{% extends base_template %} {% load seahub_tags avatar_tags i18n %} {% load url from future %} {% block extra_style %} {% include 'snippets/file_view_style.html' %} {% endblock %} {% block main_panel %}
{% if page_from == 'snapshot' %}

{{repo.props.name}} {% trans "snapshots" %} ({{ current_commit.props.ctime|tsstr_sec }})

{% endif %} {% if page_from == 'file_history' %}

{{repo.props.name}} {% trans "history"%} ({{ current_commit.props.ctime|tsstr_sec }})

{% endif %} {% if page_from == 'recycle' %}

{{repo.props.name}} {% trans "'s trash" %}

{% endif %}

{% trans "Current Path: "%} {% if page_from == 'recycle' %} {{repo.props.name}} {% trans "'s trash" %} / {% endif %} {% for name, link in zipped %} {% if not forloop.last %} {% if page_from == 'snapshot' %} {{ name }} / {% endif %} {% if page_from == 'recycle' %} {{ name }} / {% endif %} {% if page_from == 'file_history' %} {{ name }} / {% endif %} {% else %} {{ name }} {% endif %} {% endfor %}

{% include 'snippets/file_content_html.html' %}
{% endblock %} {% block extra_script %} {% include "snippets/file_view_js.html" %} {% endblock %}