templates/task/report.html
author Nishanth Amuluru <nishanth@fossee.in>
Thu, 06 Jan 2011 11:42:49 +0530
changeset 224 c41e38f36299
parent 223 b592ed0b12b1
child 225 042dabb73a22
permissions -rw-r--r--
added saving of attachments

{% 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}} | {{rep.attachment}} <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 %}