Django

Code

Ticket #5425: admin-pagination.diff

File admin-pagination.diff, 0.9 kB (added by Petr Marhoun <petr.marhoun@gmail.com>, 1 year ago)
  • django/contrib/admin/templates/admin/pagination.html

    old new  
    66    {% paginator_number cl i %} 
    77{% endfor %} 
    88{% endif %} 
    9 {{ cl.result_count }} {% ifequal cl.result_count 1 %}{{ cl.opts.verbose_name|escape }}{% else %}{{ cl.opts.verbose_name_plural|escape }}{% endifequal %} 
     9{% ifequal cl.result_count 1 %} 
     10        {% blocktrans with cl.result_count as count and cl.opts.verbose_name|escape as verbose_name %}{{ count }} {{ verbose_name }}{% endblocktrans %} 
     11{% else %} 
     12        {% blocktrans with cl.result_count as count and cl.opts.verbose_name_plural|escape as verbose_name_plural %}{{ count }} {{ verbose_name_plural }}{% endblocktrans %} 
     13{% endifequal %} 
    1014{% if show_all_url %}&nbsp;&nbsp;<a href="{{ show_all_url }}" class="showall">{% trans 'Show all' %}</a>{% endif %} 
    1115</p>