Ticket #2100: admin-change-list-i18n.diff
File admin-change-list-i18n.diff, 2.4 KB (added by , 18 years ago) |
---|
-
django/contrib/admin/templates/admin/search_form.html
7 7 <input type="text" size="40" name="{{ search_var }}" value="{{ cl.query|escape }}" id="searchbar" /> 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 %}one 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 %} 13 13 {% ifnotequal pair.0 search_var %}<input type="hidden" name="{{ pair.0|escape }}" value="{{ pair.1|escape }}"/>{% endifnotequal %} -
django/contrib/admin/templates/admin/pagination.html
1 1 {% load admin_list %} 2 {% load i18n %} 2 3 <p class="paginator"> 3 4 {% if pagination_required %} 4 5 {% for i in page_range %} … … 6 7 {% endfor %} 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/contrib/admin/templates/admin/filters.html
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 %} 6 7 {% endfor %}</div>{% endif %}