{% extends 'base.html' %} {% load seahub_tags avatar_tags i18n static %} {% block extra_style %} {% endblock %} {% block main_content %}
{% trans "Last Update" %}
-
{% trans "Size" %}
- MB

{% if error %}

{{error_msg}}

{% else %} {% if not results %}

{% trans 'No result found' %}

{% else %}

{% blocktrans count counter=total %}{{ total }} result{% plural %}{{ total }} results{% endblocktrans%}

    {% for file in results %} {% if file.is_dir %}
  • {% trans {% else %}
  • {% trans
    {% endif %}
    {% if file.is_dir %} {{ file.name }} {% else %} {{ file.name }} {% endif %}
    {% if file.parent_dir == '/' %} {{ file.repo.name }}/ {% else %} {{ file.repo.name }}{{ file.parent_dir }} {% endif %}
    {% if file.is_dir %} {{ file.last_modified|translate_seahub_time }} {% else %} {{ file.size|filesizeformat }} {{ file.last_modified|translate_seahub_time }} {% endif %} {% if file.content_highlight %}

    {{ file.content_highlight|safe }}

    {% endif %}
  • {% endfor %}
{% if total > per_page %}
{% if current_page != 1 %} {% endif %} {% if has_more %} {% endif %}
{% endif %} {% endif %} {% endif %}
{% endblock %} {% block extra_script %} {% endblock %}