templates/task/report.html
changeset 225 042dabb73a22
parent 224 c41e38f36299
equal deleted inserted replaced
224:c41e38f36299 225:042dabb73a22
     5 {% block content %}
     5 {% block content %}
     6 {% if not old_reports %}
     6 {% if not old_reports %}
     7 There are no reports submitted as of now
     7 There are no reports submitted as of now
     8 {% else %}
     8 {% else %}
     9 {% for rep in old_reports %}
     9 {% for rep in old_reports %}
    10 {{rep.submitted_by}} | {{rep.attachment}} <br />
    10 {{rep.submitted_by}} | <a href="{{rep.attachment.url}}">{{rep.attachment.name}}</a> <br />
    11 {% endfor %}
    11 {% endfor %}
    12 {% endif %}
    12 {% endif %}
    13 <hr />
    13 <hr />
    14 {% if can_upload %}
    14 {% if can_upload %}
    15 Submit a report: <br />
    15 Submit a report: <br />