{% extends "base.html" %} {% block content %} {% if not booths %}
No booths yet.
Drop a folder of media into {{ data_dir }} and it lands here.
{% 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 %}
{{ b.name }}
{{ b.count }} item{{ '' if b.count == 1 else 's' }} · expires in {{ b.expires_in|dur }}
{% endfor %}
{% endif %} {% endblock %}