datatracker/ietf/templates/submit/submission_files.html

10 lines
428 B
HTML

{# Copyright The IETF Trust 2015, All Rights Reserved #}{% load origin %}{% origin %}
{% for file in files %}
{% if file.exists %}
<a class="btn btn-default btn-xs" href="{{ file.url }}" target="_blank">
<span class="fa fa-file-{% if file.ext == "txt" %}text-o{% elif file.ext == "xml" %}code-o{% elif file.ext == "pdf" %}pdf-o{% else %}o{% endif %}"></span>
{{ file.ext }}
</a>
{% endif %}
{% endfor %}