templates/task/delete.html
author nishanth
Wed, 03 Mar 2010 11:19:42 +0530
changeset 191 3bfe70742aa8
parent 172 f21284458b8c
permissions -rw-r--r--
now requested mentors can see unpublished task but not comment on it.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
172
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     2
{% block title %}
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     3
    {{task.title}}
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     4
{% endblock %}
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     5
{% block content %}
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     6
    Are you sure you want to delete the task. This action cannot be undone.<br />
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     7
    
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     8
    <form action="" method="post">
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     9
        Reason: <input type="text" name="reason">
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
    10
        <input value="Delete" type="submit">
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
    11
    </form>
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
    12
{% endblock %}