author | nishanth |
Mon, 01 Mar 2010 05:18:44 +0530 | |
changeset 158 | c43e0114e593 |
parent 89 | 1cc03941ed5d |
permissions | -rw-r--r-- |
89
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
2 |
{% block title %} |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
3 |
Add tasks for {{task.title}} |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
4 |
{% endblock %} |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
5 |
{% block content %} |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
6 |
{% if errors %} |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
7 |
Please correct the following errors.<br /> |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
8 |
{% for err in errors %} |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
9 |
{{err}}<br /> |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
10 |
{% endfor %} |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
11 |
{% endif %} |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
12 |
<form action="" method="post"> |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
13 |
{{form.as_p}} |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
14 |
<input value="Submit" type="submit"> |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
15 |
</form> |
1cc03941ed5d
added the capability of adding subtasks/dependencies .
nishanth
parents:
diff
changeset
|
16 |
{% endblock %} |