{% extends "base.html" %} {% block title %}File Gallery - {{ config.BBS_NAME }}{% endblock %} {% block content %}

File Gallery

{% if current_user.is_authenticated %}
Upload File
{% endif %}
{% for f in uploads %} {% else %} {% endfor %}
FilenameUploaderSizeTypeDownloadsDateActions
{{ f.original_filename }} {{ f.user.username }} {{ (f.file_size / 1024) | round(1) }} KB {{ f.mime_type }} {{ f.download_count }} {{ f.created_at.strftime('%Y-%m-%d') }} {% if current_user.is_authenticated and (current_user.id == f.user_id or current_user.is_admin) %}
{% endif %}
No files uploaded yet.
{% endblock %}