=== modified file 'django/contrib/admin/templates/admin/pagination.html'
|
|
|
6 | 6 | {% paginator_number cl i %} |
7 | 7 | {% endfor %} |
8 | 8 | {% endif %} |
9 | | {{ cl.result_count }} {% ifequal cl.result_count 1 %}{{ cl.opts.verbose_name|escape }}{% else %}{{ cl.opts.verbose_name_plural }}{% endifequal %} |
| 9 | {% ifequal cl.result_count 1 %} |
| 10 | {% blocktrans with cl.result_count as count and cl.opts.verbose_name as verbose_name %}{{ count }} {{ verbose_name }}{% endblocktrans %} |
| 11 | {% else %} |
| 12 | {% blocktrans with cl.result_count as count and cl.opts.verbose_name_plural as verbose_name_plural %}{{ count }} {{ verbose_name_plural }}{% endblocktrans %} |
| 13 | {% endifequal %} |
10 | 14 | {% if show_all_url %} <a href="{{ show_all_url }}" class="showall">{% trans 'Show all' %}</a>{% endif %} |
11 | 15 | </p> |