summaryrefslogtreecommitdiff
path: root/templates/task/removetask.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/task/removetask.html')
-rw-r--r--templates/task/removetask.html17
1 files changed, 0 insertions, 17 deletions
diff --git a/templates/task/removetask.html b/templates/task/removetask.html
deleted file mode 100644
index 0131520..0000000
--- a/templates/task/removetask.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% 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 %}