2015-09-24 22:04:51 +02:00
|
|
|
{% extends "base.html" %}
|
2015-09-24 07:44:49 +02:00
|
|
|
|
2015-09-24 22:04:51 +02:00
|
|
|
{% block main %}
|
2015-10-04 23:13:29 +02:00
|
|
|
<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>
|
2015-10-07 22:45:41 +02:00
|
|
|
|
|
|
|
{% if files|length > 0 %}
|
|
|
|
<p>Contents of the archive:</p>
|
|
|
|
<ul>
|
|
|
|
{% for file in files %}
|
|
|
|
<li>{{ file }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
2015-09-24 22:04:51 +02:00
|
|
|
</div>
|
2015-09-24 07:44:49 +02:00
|
|
|
{% endblock %}
|