{% extends "django_tables2/bootstrap.html" %} {% load django_tables2 %} {% load i18n %} {% block pagination.previous %} {% endblock pagination.next %} {% block pagination %}
{% if table.page %} {% with total=table.page.paginator.count count=table.page.object_list|length start_index=table.page.start_index end_index=table.page.end_index %} {% if total == 1 %} {% trans "result" as results %} {% else %} {% trans "results" as results %} {% endif %}
{% blocktrans %}Showing {{ start_index }} - {{ end_index }} of {{ total }} {{ results }}{% endblocktrans %}
{% endwith %} {% endif %}
{{ block.super }}
 
{% endblock pagination %}