Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / django / contrib / admin / templates / admin / pagination.html @ 1a305335

History | View | Annotate | Download (561 Bytes)

1
{% load admin_list %}
2
{% load i18n %}
3
<p class="paginator">
4
{% if pagination_required %}
5
{% for i in page_range %}
6
    {% paginator_number cl i %}
7
{% endfor %}
8
{% endif %}
9
{{ cl.result_count }} {% ifequal cl.result_count 1 %}{{ cl.opts.verbose_name }}{% else %}{{ cl.opts.verbose_name_plural }}{% endifequal %}
10
{% if show_all_url %}&nbsp;&nbsp;<a href="{{ show_all_url }}" class="showall">{% trans 'Show all' %}</a>{% endif %}
11
{% if cl.formset and cl.result_count %}<input type="submit" name="_save" class="default" value="{% trans 'Save' %}"/>{% endif %}
12
</p>