{% extends "blog/base.html" %} {% block breadcrumb %} {% endblock %} {% block content %}
全部 {% for value, label in file_categories %} {{ label }} {% endfor %}
{% for file in page_obj %}
{% if file.category == 'image' %} 📷 {% elif file.category == 'document' %} 📄 {% elif file.category == 'media' %} 🎵 {% elif file.category == 'archive' %} 📦 {% else %} 📂 {% endif %}

{{ file.original_name }}

{% if file.description %}

{{ file.description }}

{% endif %}
{{ file.get_file_size_display }} 下载 {{ file.download_count }} 次 {{ file.created_at|date:"Y-m-d" }}
下载
{% empty %}

暂无公开文件

{% endfor %} {% if page_obj.has_other_pages %} {% endif %} {% endblock %}