templates/task/report.html
author Nishanth Amuluru <nishanth@fossee.in>
Thu, 06 Jan 2011 00:15:17 +0530
changeset 221 a3de0d3c60a3
parent 220 807e4b701a20
child 223 b592ed0b12b1
permissions -rw-r--r--
created form and created basic template for work report

{% 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 %}
some data
<hr />
{% endblock %}