templates/task/delete.html
author anoop
Tue, 09 Mar 2010 11:39:34 +0530
changeset 214 679c7e237052
parent 172 f21284458b8c
permissions -rw-r--r--
added two more templates for displaying admin login form and admin logout message.

{% extends 'base.html' %}
{% block title %}
    {{task.title}}
{% endblock %}
{% block content %}
    Are you sure you want to delete the task. This action cannot be undone.<br />
    
    <form action="" method="post">
        Reason: <input type="text" name="reason">
        <input value="Delete" type="submit">
    </form>
{% endblock %}