pytask/templates/task/removetask.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 08 Jan 2011 01:30:02 +0530
branchbuildout
changeset 230 f1a789359ec8
parent 227 3c8f3b0e5b00
permissions -rw-r--r--
Replaced all the bitbucket URLs to use https instead of plain http.

{% extends 'base.html' %}
{% block title %}
    Remove tasks for {{task.title}}
{% endblock %}
{% block content %}
    <a href="/task/view/tid={{task.id}}">Click here</a> to return to task.<br />
    {% if errors %}
        Please correct the following errors.<br />
        {% for err in errors %}
            {{err}}<br />
        {% endfor %}
    {% endif %}
    <form action="" method="post">
        {{form.as_p}}
    <input value="Submit" type="submit">
    </form>
{% endblock %}