ProfouzorsLinx/templates/display/file.html

17 lines
443 B
HTML
Raw Normal View History

{% extends "base.html" %}
2015-09-24 07:44:49 +02:00
{% block main %}
<div class="normal display-file">
2019-01-14 23:51:02 +01:00
<p class="center">You are requesting <a href="{{ sitepath }}{{ selifpath }}{{ filename }}">{{ filename }}</a>, <a href="{{ sitepath }}{{ selifpath }}{{ 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 %}