{% extends 'file_explorer/base.html' %} {% block title %}搜索结果 - {{ query }}{% endblock %} {% block content %}
搜索关键词: "{{ query }}"
找到 {{ total_results }} 个结果
{% if files %}
{% for file in files %}
{{ file.original_name }}

{{ file.file_type|upper }}
{{ file.get_file_size_display }}
{{ file.uploaded_by.username }}
{{ file.uploaded_at|date:"Y-m-d H:i" }}

{% if file.description %}

{{ file.description|truncatechars:100 }}

{% endif %} {% if file.tags %}
{% for tag in file.tags.split|slice:":3" %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% if files.has_other_pages %} {% endif %} {% else %}

没有找到相关文件

请尝试使用其他关键词搜索

查看所有文件
{% endif %}
{% endblock %}