author | nishanth |
Sun, 28 Feb 2010 02:45:21 +0530 | |
changeset 135 | 0ede6b2c5cd1 |
parent 92 | c99f09bebe56 |
child 159 | a74a32a5a3e1 |
permissions | -rw-r--r-- |
92
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
2 |
{% block title %} |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
3 |
Remove tasks for {{task.title}} |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
4 |
{% endblock %} |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
5 |
{% block content %} |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
6 |
{% if errors %} |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
7 |
Please correct the following errors.<br /> |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
8 |
{% for err in errors %} |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
9 |
{{err}}<br /> |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
10 |
{% endfor %} |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
11 |
{% endif %} |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
12 |
<form action="" method="post"> |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
13 |
{{form.as_p}} |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
14 |
<input value="Submit" type="submit"> |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
15 |
</form> |
c99f09bebe56
added the capability to remove subtasks/dependencies .
nishanth
parents:
diff
changeset
|
16 |
{% endblock %} |