first commit
This commit is contained in:
31
templates/index.html
Normal file
31
templates/index.html
Normal 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' %}
|
||||
Reference in New Issue
Block a user