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.
11 lines
452 B
11 lines
452 B
{# Please keep this template in sync with django/contrib/admin one #}
|
|
{% load admin_list %}
|
|
{% load i18n %}
|
|
{% if pagination_required %}
|
|
<ul class="paginator pagination">
|
|
{% for i in page_range %}
|
|
<li {% if cl.page_num == i %}class="active"{% endif %}>{% paginator_number cl i %}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% if cl.formset and cl.result_count %}<p><input type="submit" name="_save" class="default" value="{% trans 'Save' %}"/></p>{% endif %}
|
|
|