templates/task/removetask.html
changeset 236 39f83b4cf557
parent 235 e338eaeccad7
equal deleted inserted replaced
235:e338eaeccad7 236:39f83b4cf557
     1 {% extends 'base.html' %}
       
     2 {% block title %}
       
     3     Remove tasks for {{task.title}}
       
     4 {% endblock %}
       
     5 {% block content %}
       
     6     <a href="/task/view/tid={{task.id}}">Click here</a> to return to task.<br />
       
     7     {% if errors %}
       
     8         Please correct the following errors.<br />
       
     9         {% for err in errors %}
       
    10             {{err}}<br />
       
    11         {% endfor %}
       
    12     {% endif %}
       
    13     <form action="" method="post">
       
    14         {{form.as_p}}
       
    15     <input value="Submit" type="submit">
       
    16     </form>
       
    17 {% endblock %}