summaryrefslogtreecommitdiff
path: root/templates/task/addtask.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/task/addtask.html')
-rw-r--r--templates/task/addtask.html16
1 files changed, 0 insertions, 16 deletions
diff --git a/templates/task/addtask.html b/templates/task/addtask.html
deleted file mode 100644
index 460b449..0000000
--- a/templates/task/addtask.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{% extends 'base.html' %}
-{% block title %}
- Add tasks for {{task.title}}
-{% endblock %}
-{% block content %}
- {% 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 %}