{% extends "base.html" %} {% block content %}
{% if not booths %}
No booths yet. Upload files above, or drop a folder into {{ data_dir }}.
{% else %}
{% for b in booths %}
{% if b.thumb_url %} {% elif b.has_index %}
▦ page
{% elif b.kinds.video %}
▶ video
{% elif b.kinds.audio %}
♪ audio
{% else %}
◆ files
{% endif %} {% if b.uploaded %}⬆ pickup{% endif %}
{{ b.name }}
{{ b.count }} item{{ '' if b.count == 1 else 's' }} · expires in {{ b.expires_in|dur }} · ⬇ zip
{% endfor %}
{% endif %} {% endblock %}