initial
This commit is contained in:
18
code/templates/index.html
Executable file
18
code/templates/index.html
Executable 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 %}
|
||||
Reference in New Issue
Block a user