changeset 221 | a3de0d3c60a3 |
parent 220 | 807e4b701a20 |
child 223 | b592ed0b12b1 |
220:807e4b701a20 | 221:a3de0d3c60a3 |
---|---|
1 {% extends 'base.html' %} |
1 {% extends 'base.html' %} |
2 {% block title %} |
2 {% block title %} |
3 {{task.title}} |
3 {{task.title}} |
4 {% endblock %} |
4 {% endblock %} |
5 {% block content %} |
5 {% block content %} |
6 |
6 {% if not old_reports %} |
7 There are no reports submitted as of now |
|
8 {% else %} |
|
9 {% for rep in old_reports %} |
|
10 {{rep.submitted_by}} | {{rep.attachment}} <br /> |
|
11 {% endfor %} |
|
12 {% endif %} |
|
13 some data |
|
14 <hr /> |
|
7 {% endblock %} |
15 {% endblock %} |