changeset 89 | 1cc03941ed5d |
88:0b6d251d3c30 | 89:1cc03941ed5d |
---|---|
1 {% extends 'base.html' %} |
|
2 {% block title %} |
|
3 Add 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 %} |