templates/task/removetask.html
author Nishanth Amuluru <nishanth@fossee.in>
Thu, 06 Jan 2011 00:17:53 +0530
changeset 222 eeef395a4e02
parent 159 a74a32a5a3e1
permissions -rw-r--r--
corrected a typo
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 %}
159
a74a32a5a3e1 finalised the look of all existing task views .
nishanth
parents: 92
diff changeset
     6
    <a href="/task/view/tid={{task.id}}">Click here</a> to return to task.<br />
92
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
     7
    {% if errors %}
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
     8
        Please correct the following errors.<br />
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
     9
        {% for err in errors %}
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
    10
            {{err}}<br />
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
    11
        {% endfor %}
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
    12
    {% endif %}
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
    13
    <form action="" method="post">
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
    14
        {{form.as_p}}
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
    15
    <input value="Submit" type="submit">
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
    16
    </form>
c99f09bebe56 added the capability to remove subtasks/dependencies .
nishanth
parents:
diff changeset
    17
{% endblock %}