This commit is contained in:
2018-01-24 10:53:17 +02:00
commit 57e6bd5608
10 changed files with 280 additions and 0 deletions

18
code/templates/index.html Executable file
View File

@@ -0,0 +1,18 @@
{% extends "layout.html" %}
{% block body %}
<table class=entriesall>
<tr>
<th>name
<th>expires
<th>upload
</tr>
{% for entry in entries %}
<tr>
<td><a href="{{ url_for('list_view',name=entry.name) }}">{{ entry.name }}</a>
<td>{{ entry.expire|safe }}
<td>{{ entry.upload|safe }}
{% else %}
<li>no shares
{% endfor %}
</table>
{% endblock %}