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
506 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 %}>{% if '.' == i %}<span>...</span>{% else %}{% paginator_number cl i %}{% endif %}</li>
{% endfor %}
</ul>
{% endif %}
{% if cl.formset and cl.result_count %}<p><input type="submit" name="_save" class="default" value="{% trans 'Save' %}"/></p>{% endif %}