Gauravwagh / django-grappelli

Automatically exported from code.google.com/p/django-grappelli
Other
0 stars 0 forks source link

wrong text in paginator after search #303

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
find in grappelli/templates/admin/pagination.html

 {% blocktrans count cl.result_count as counter%} 1 result{% plural %}
{{ counter }} results{% endblocktrans %}

need to fix:
 {% blocktrans count cl.result_count as counter%} result{% plural %}
{{ counter }} results{% endblocktrans %}

Original issue reported on code.google.com by klemens.mantzos on 18 Nov 2010 at 10:42

GoogleCodeExporter commented 9 years ago
see 
http://groups.google.com/group/django-grappelli/browse_thread/thread/17ebfb4d8ed
b1f41

Original comment by klemens.mantzos on 18 Nov 2010 at 10:46

GoogleCodeExporter commented 9 years ago
can't reproduce any bugs on that.

django.contrib.admin's original pagination.html has the same tag (except they 
use {{ verbose_name }} instead of result).

so if there is a bug please describe your issue more accuratly.

regards,
klemens

Original comment by klemens.mantzos on 22 Nov 2010 at 1:57