Files
flees/code/templates/index.html
2018-01-24 22:11:29 +02:00

21 lines
589 B
HTML
Executable File

{% extends "layout.html" %}
{% block body %}
<div id=index_title><h1>Flees</h1></div>
<div class=clear></div>
<table id=index_table>
<tr>
<th>Name
<th class=td_right>Expires
<th class=td_right>Upload
</tr>
{% for entry in entries %}
<tr>
<td><a href="{{ url_for('list_view',name=entry.name) }}">{{ entry.name }}</a>
<td class=td_right>{% if entry.expire %}{{ entry.expire|safe }}{% else %}-{% endif %}
<td class=td_right>{% if entry.upload %}yes{% else %}no{% endif %}
{% else %}
<li>no shares
{% endfor %}
</table>
{% endblock %}