changeset 92 | c99f09bebe56 |
child 159 | a74a32a5a3e1 |
91:1b5ad4b7c40e | 92:c99f09bebe56 |
---|---|
1 {% extends 'base.html' %} |
|
2 {% block title %} |
|
3 Remove tasks for {{task.title}} |
|
4 {% endblock %} |
|
5 {% block content %} |
|
6 {% if errors %} |
|
7 Please correct the following errors.<br /> |
|
8 {% for err in errors %} |
|
9 {{err}}<br /> |
|
10 {% endfor %} |
|
11 {% endif %} |
|
12 <form action="" method="post"> |
|
13 {{form.as_p}} |
|
14 <input value="Submit" type="submit"> |
|
15 </form> |
|
16 {% endblock %} |