You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
443 B
16 lines
443 B
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
<div class="normal display-file">
|
|
<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>
|
|
{% endblock %}
|