mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
652 B
13 lines
652 B
{# Please keep this template in sync with django/contrib/admin one #}
|
|
{% load admin_list %}
|
|
{% load i18n %}
|
|
<ul class="paginator pagination">
|
|
{% if pagination_required %}
|
|
{% for i in page_range %}
|
|
{% paginator_number cl i %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
<li>{{ cl.result_count }} {% if cl.result_count == 1 %}{{ cl.opts.verbose_name }}{% else %}{{ cl.opts.verbose_name_plural }}{% endif %}</li>
|
|
{% if show_all_url %}<li><a href="{{ show_all_url }}" class="showall">{% trans 'Show all' %}</a></li>{% endif %}
|
|
{% if cl.formset and cl.result_count %}<li><input type="submit" name="_save" class="default" value="{% trans 'Save' %}"/></li>{% endif %}
|
|
</ul>
|
|
|