datatracker/ietf/templates/submit/submission_files.html
Henrik Levkowetz 34dfae8d23 Merged [3380] from esanchez@yaco.es:
Check for missed files on staging area. Fixes #707
 - Legacy-Id: 3447
Note: SVN reference [3380] has been migrated to Git commit 0d241bd7c0abf8942d5c121aa9dda5ee34cf75ae
2011-10-13 15:38:50 +00:00

12 lines
336 B
HTML

{% if files %}
<ul>
{% for file in files %}
{% if file.exists %}
<li><a href="{{ file.url }}" target="_blank">{{ file.name }}</a></li>
{% else %}
<li style="color: red;"><span style="text-decoration: line-through;">{{ file.name }}</span> This file is not found on staging area</li>
{% endif %}
{% endfor %}
</ul>
{% endif %}