first commit

This commit is contained in:
2023-06-22 08:10:29 +00:00
commit abf7741b16
15 changed files with 597 additions and 0 deletions

31
templates/index.html Normal file
View File

@@ -0,0 +1,31 @@
{% 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' %}