{% extends "sysadmin/base.html" %} {% load i18n seahub_tags %} {% block cur_links %}tab-cur{% endblock %} {% block right_panel %}

{% trans "All Public Links" %}

{% if publinks %} {% for publink in publinks %} {% endfor %}
{% trans "Name" %} {% trans "Owner" %} {% trans "Create At" %} {% if sort_by == 'time_down' %}{% elif sort_by == 'time_up' %}{% endif %} {% trans "Count" %} {% if sort_by == 'count_down' %}{% elif sort_by == 'count_up' %}{% endif %} {% trans "Operations" %}
{{ publink.name }} {{ publink.username }} {{ publink.ctime|translate_seahub_time }} {{ publink.view_cnt }} {% trans "Remove" %}
{% if current_page != 1 %} {% trans "Previous" %} {% endif %} {% if page_next %} {% trans "Next" %} {% endif %} {% if current_page != 1 or page_next %} | {% endif %} {% trans "Per page: " %} {% if per_page == 25 %} 25 {% else %} 25 {% endif %} {% if per_page == 50 %} 50 {% else %} 50 {% endif %} {% if per_page == 100 %} 100 {% else %} 100 {% endif %}
{% else %}

{% trans "Empty" %}

{% endif %} {% endblock %} {% block extra_script %} {% endblock %}