Check for missed files on staging area. Fixes #707 - Legacy-Id: 3447 Note: SVN reference [3380] has been migrated to Git commit 0d241bd7c0abf8942d5c121aa9dda5ee34cf75ae
12 lines
336 B
HTML
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 %}
|