{% extends "base.html" %} {% block title %}Manage Files — {{ area.tag }}{% endblock %} {% block content %}

Manage Files: {{ area.name or area.tag }}

{{ area.tag }} {% if area.storage_path %} — {{ area.storage_path }}{% endif %} — {{ files|length }} file(s)

User View Admin: File Areas
{# ── Upload ── #}
Upload File (Sysop Direct)
{# ── File list ── #}
{% if files %} {% for f in files %} {% endfor %}
Filename Size Date Description Delete
{% if f.is_image %} {% endif %} {{ f.name }} {{ '%.1f'|format(f.size / 1024) }} KB {{ f.mtime.strftime('%Y-%m-%d') }} {# Inline description editor — click Edit to expand #}
{% if f.description %}{{ f.description.split('\n')[0][:120] }}{% else %}no description{% endif %}
{% else %}
No files in this area yet. Use the upload form above to add files.
{% endif %}
{% endblock %}