{% extends 'core/index.html' %} {% load i18n %} {% block Title %}{% trans 'Page segmentation list' %}{% endblock %} {% block Scripts %} {% endblock %} {% block Caption %}{% trans 'Page segmentation list' %}{% endblock %} {% block Content %} {% if est_infos %} {% load paginator %} {% url 'core:segmentation_list_default' as page_url %} {% paginator page_url pages as pg %}

{% trans 'Total' %}: {{ pages.obj_count }}

{{ pg }} {% for est_info in est_infos %} {% endfor %}
{% trans 'Document id' %} {% trans 'Segmented by' %} {% trans 'Action' %}
{{ est_info.docid }} {{ est_info.user__login }} {% trans 'Watch' %}
{% trans 'Delete' %}
{{ pg }} {% else %}

{% trans 'No tasks are available.' %}

{%endif%} {% endblock %}