{% extends "base.html" %} {% block title %}{{ area.tag }} - File Area{% endblock %} {% block content %}

{{ area.name or area.tag }}

{{ area.tag }}{% if area.description %} — {{ area.description }}{% endif %}

Storage: {{ area.storage_path or '(not set)' }} — Upload: {{ area.upload_permission }} {% if area.password %} — password-protected{% endif %}

{% if current_user.is_admin %}
{% endif %}
{% if files %} {% for f in files %} {% endfor %}
FilenameSizeDateDescription
{% if f.is_image %} {% endif %} {{ f.name }} {{ '%.1f'|format(f.size / 1024) }} KB {{ f.mtime.strftime('%Y-%m-%d') }} {{ f.description }}
share
{% else %}
No files in this area yet.
{% endif %}
{% set can_upload = (area.upload_permission == 'users') or (area.upload_permission == 'sysop' and current_user.is_admin) %} {% if can_upload %}
Upload File
{% if area.password %}
{% endif %}
{% endif %}
← All file areas
{% endblock %}