Changeset 3097
- Timestamp:
- 06/06/06 22:17:58 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/admin/templates/admin/filters.html
r1443 r3097 1 1 {% load admin_list %} 2 {% load i18n %} 2 3 {% if cl.has_filters %}<div id="changelist-filter"> 3 <h2> Filter</h2>4 <h2>{% trans 'Filter' %}</h2> 4 5 {% for spec in cl.filter_specs %} 5 6 {% filter cl spec %} django/trunk/django/contrib/admin/templates/admin/pagination.html
r1443 r3097 1 1 {% load admin_list %} 2 {% load i18n %} 2 3 <p class="paginator"> 3 4 {% if pagination_required %} … … 7 8 {% endif %} 8 9 {{ cl.result_count }} {% ifequal cl.result_count 1 %}{{ cl.opts.verbose_name }}{% else %}{{ cl.opts.verbose_name_plural }}{% endifequal %} 9 {% if show_all_url %} <a href="{{ show_all_url }}" class="showall"> Show all</a>{% endif %}10 {% if show_all_url %} <a href="{{ show_all_url }}" class="showall">{% trans 'Show all' %}</a>{% endif %} 10 11 </p> django/trunk/django/contrib/admin/templates/admin/search_form.html
r2809 r3097 8 8 <input type="submit" value="{% trans 'Go' %}" /> 9 9 {% if show_result_count %} 10 <span class="small quiet">{ { cl.result_count }} result{{ cl.result_count|pluralize }} (<a href="?">{{ cl.full_result_count }} total</a>)</span>10 <span class="small quiet">{% blocktrans count cl.result_count as counter %}1 result{% plural %}{{ counter }} results{% endblocktrans %} (<a href="?">{% blocktrans with cl.full_result_count as full_result_count %}{{ full_result_count }} total{% endblocktrans %}</a>)</span> 11 11 {% endif %} 12 12 {% for pair in cl.params.items %}
