author | nishanth |
Sat, 30 Jan 2010 13:03:09 +0530 | |
changeset 11 | d28fcc644fbb |
parent 5 | aea7e764c033 |
permissions | -rw-r--r-- |
5
aea7e764c033
created views and templates for homepage,browse_task and added actions.
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
11
d28fcc644fbb
implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents:
5
diff
changeset
|
2 |
{% block content %} |
d28fcc644fbb
implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents:
5
diff
changeset
|
3 |
{% if error_msg %} |
d28fcc644fbb
implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents:
5
diff
changeset
|
4 |
{{ error_msg }}<br /> |
d28fcc644fbb
implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents:
5
diff
changeset
|
5 |
{% endif %} |
d28fcc644fbb
implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents:
5
diff
changeset
|
6 |
<form action="" method="post"> |
d28fcc644fbb
implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents:
5
diff
changeset
|
7 |
{{form.as_p}} |
d28fcc644fbb
implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents:
5
diff
changeset
|
8 |
<input type="submit" value="Submit"> |
d28fcc644fbb
implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
nishanth
parents:
5
diff
changeset
|
9 |
</form> |
5
aea7e764c033
created views and templates for homepage,browse_task and added actions.
nishanth
parents:
diff
changeset
|
10 |
{% endblock %} |