ProfouzorsLinx/templates/display/file.html

17 lines
399 B
HTML
Raw Normal View History

{% extends "base.html" %}
2015-09-24 07:44:49 +02:00
{% block main %}
<div class="normal display-file">
<p class="center">You are requesting <a href="/selif/{{ filename }}">{{ filename }}</a>, <a href="/selif/{{ filename }}">click here</a> to download.</p>
{% if files|length > 0 %}
<p>Contents of the archive:</p>
<ul>
{% for file in files %}
<li>{{ file }}</li>
{% endfor %}
</ul>
{% endif %}
</div>
2015-09-24 07:44:49 +02:00
{% endblock %}