{% extends 'exp/base.html' %} {% load bootstrap3 %} {% load exp_extras %} {% load tz %} {% block title %}Attachments | {{ study.name }}{% endblock %} {% block head %} {{ block.super }} {{ form.media }} {% endblock %} {% block flash %} {% bootstrap_messages %} {% if form.non_field_errors %} {% endif %} {% endblock %} {% block content %}

Attachments

{% if attachments %}
{% include 'studies/_response_nav_tabs.html' with active="attachments" %}
{% csrf_token %}
{% for attachment in attachments %} {% timezone request.user.time_zone %} {% endtimezone %} {% endfor %}
Name Date
{{ attachment.key }} {{ attachment.last_modified }}
{% csrf_token %}
{% else %}

No attachments available for download.

{% endif %}
{% endblock %}