32 lines
587 B
HTML
32 lines
587 B
HTML
|
{% include 'base.html' %}
|
||
|
{% block main %}
|
||
|
{% include 'menu.html' %}
|
||
|
<h5 class="display-8">Files list</h5>
|
||
|
<br>
|
||
|
<div style="padding:40px;">
|
||
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<td>Name</td>
|
||
|
<td>Retention (hours)</td>
|
||
|
<td>Upload date</td>
|
||
|
<td>Link</td>
|
||
|
<td>End Download Time</td>
|
||
|
<td>Download page</td>
|
||
|
<td>Single Download</td>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{%for file in listdir %}
|
||
|
<tr>
|
||
|
{%for item in file %}
|
||
|
<td>{{ item }}</td>
|
||
|
{%endfor%}
|
||
|
</tr>
|
||
|
{%endfor%}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
{% include 'foot.html' %}
|