summaryrefslogtreecommitdiff
path: root/templates/task/report.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/task/report.html')
-rw-r--r--templates/task/report.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/templates/task/report.html b/templates/task/report.html
deleted file mode 100644
index e1a2aa3..0000000
--- a/templates/task/report.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{% extends 'base.html' %}
-{% block title %}
- {{task.title}}
-{% endblock %}
-{% block content %}
-{% if not old_reports %}
-There are no reports submitted as of now
-{% else %}
-{% for rep in old_reports %}
-{{rep.submitted_by}} | <a href="{{rep.attachment.url}}">{{rep.attachment.name}}</a> <br />
-{% endfor %}
-{% endif %}
-<hr />
-{% if can_upload %}
-Submit a report: <br />
-<form action='' method=post enctype="multipart/form-data">
-{{ form.as_p }}
-<input type=submit value=submit />
-</form>
-{% endif %}
-{% endblock %}