{% if uploaded %}⬆ pickup {% endif %}{{ items|length }} item{{ '' if items|length == 1 else 's' }} · expires in {{ expires_in|dur }}
{% if items %}⬇ zip{% endif %}
{% if uploaded %}
📦 Pickup {{ name }}
— download files below, or on nh3-dev grab ~/booth-data/{{ name }}/
{% endif %}
{% if not items %}
This booth is empty.
{% else %}
{% for it in items %}
{% if it.kind == 'image' %}
{% elif it.kind == 'video' %}
{# preload="none": a booth of a dozen webms was fetching them
all at page load ("metadata" still pulls real ranges per
file); nothing loads until the viewer hits play #}
{% elif it.kind == 'audio' %}
{% elif it.doc %}
📄 {{ it.name }}
{% else %}
⬇ {{ it.name }}
{% endif %}
{% if it.kind == 'other' %}
{% if it.caption %}{{ it.caption }}{% endif %}
{% else %}
⬇{{ it.caption or it.name }}
{% endif %}
{% endfor %}