{% spaceless %} {% load i18n %} {% if file_upload_type %}
{% if team_file_urls %}
{% trans "Files that were uploaded by your teammates:" %}
{% endif %}
{% for file in team_file_urls %}
{% if file.download_url %} {% if file_upload_type == "image" %} {% if file.description %}
{{ file.description }}:
{% endif %}
{% elif file_upload_type == "pdf-and-image" or file_upload_type == "custom" %} {% if file.description %} {{ file.description }} ( {{file.name}} ) {% else %} {% trans "View the files associated with this submission:" %} #{{ forloop.counter }} {% endif %} {% endif %} [{% trans "Uploaded by" %} {{ file.uploaded_by }}] {% endif %}
{% endfor %}
{% endif %} {% endspaceless %}