changeset 236 | 39f83b4cf557 |
parent 235 | e338eaeccad7 |
235:e338eaeccad7 | 236:39f83b4cf557 |
---|---|
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 %} |