{% extends base_template %} {% load seahub_tags avatar_tags i18n %} {% load url from future %} {% block main_panel %}

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

{% if path == '/' %}

{{ current_commit.props.desc|translate_commit_desc }}

{% if current_commit.props.creator_name %} {% avatar current_commit.props.creator_name 20 %} {{ current_commit.props.creator_name|short_email }} {% else %} {% trans "Unknown"%} {% endif %} {{ current_commit.props.ctime|translate_seahub_time }}

{% endif %}
{% if not user_perm %}

{% trans "Can't view this library"%}

{% else %}

{% trans "Current path: "%} {% for name, link in zipped %} {% if not forloop.last %} {{ name }} / {% else %} {{ name }} {% endif %} {% endfor %}

{% for dirent in dir_list %} {% endfor %} {% for dirent in file_list %} {% endfor %}
{% trans "Name"%} {% trans "Size"%}
{% trans {{ dirent.obj_name }}
{% trans {{ dirent.props.obj_name }} {{ dirent.file_size|filesizeformat }}
{% endif %}
{% endblock %} {% block extra_script %} {% endblock %}