diff options
Diffstat (limited to 'templates/task/report.html')
-rw-r--r-- | templates/task/report.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/templates/task/report.html b/templates/task/report.html index d79c0c0..8890d1f 100644 --- a/templates/task/report.html +++ b/templates/task/report.html @@ -3,5 +3,13 @@ {{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 %} |