8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-25 12:53:11 +00:00
re2o/useradmin/templates/admin/pagination.html

12 lines
452 B
HTML
Raw Normal View History

2019-02-17 17:59:06 +00:00
{# Please keep this template in sync with django/contrib/admin one #}
{% load admin_list %}
{% load i18n %}
{% if pagination_required %}
2019-02-25 20:12:11 +00:00
<ul class="paginator pagination">
2019-02-17 17:59:06 +00:00
{% for i in page_range %}
2019-02-25 20:12:11 +00:00
<li {% if cl.page_num == i %}class="active"{% endif %}>{% paginator_number cl i %}</li>
2019-02-17 17:59:06 +00:00
{% endfor %}
</ul>
2019-02-25 20:12:11 +00:00
{% endif %}
{% if cl.formset and cl.result_count %}<p><input type="submit" name="_save" class="default" value="{% trans 'Save' %}"/></p>{% endif %}