{% extends "base.html" %} {% block title %}附件管理{% endblock %} {% block content %}
上传新附件
附件列表
{% if type_filter != 'all' or search_query %} 重置 {% endif %}
{% for attachment in attachments %} {% else %} {% endfor %}
预览 文件名 类型 文件大小 上传时间 {% if sort_order == 'desc' %} {% else %} {% endif %} 操作
{% if attachment.type == 'logo' %} {% elif attachment.type == 'background' %} {% elif attachment.type == 'video' %} {% else %} {% endif %} {{ attachment.filename }} {% if attachment.type == 'logo' %} Logo {% elif attachment.type == 'background' %} 背景图片 {% elif attachment.type == 'video' %} 背景视频 {% else %} 图标图片 {% endif %} {{ attachment.size|filesizeformat }} {{ attachment.upload_time }}
没有找到匹配的附件
{% for attachment in attachments %}
{% if attachment.type == 'logo' %} {% elif attachment.type == 'background' %} {% elif attachment.type == 'video' %} {% else %} {% endif %}
{{ attachment.filename }}

{% if attachment.type == 'logo' %} Logo {% elif attachment.type == 'background' %} 背景图片 {% elif attachment.type == 'video' %} 背景视频 {% else %} 图标图片 {% endif %}

{{ attachment.size|filesizeformat }}

{{ attachment.upload_time }}

{% else %}
没有找到匹配的附件
{% endfor %}
{% if total_pages > 1 %} {% endif %}
{% endblock %}