mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixed #14735 -- Corrected plural formulation in admin search form template. Thanks, Claude.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14770 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -7,7 +7,7 @@ | |||||||
| <input type="text" size="40" name="{{ search_var }}" value="{{ cl.query }}" id="searchbar" /> | <input type="text" size="40" name="{{ search_var }}" value="{{ cl.query }}" id="searchbar" /> | ||||||
| <input type="submit" value="{% trans 'Search' %}" /> | <input type="submit" value="{% trans 'Search' %}" /> | ||||||
| {% if show_result_count %} | {% if show_result_count %} | ||||||
|     <span class="small quiet">{% blocktrans count cl.result_count as counter %}1 result{% plural %}{{ counter }} results{% endblocktrans %} (<a href="?{% if cl.is_popup %}pop=1{% endif %}">{% blocktrans with cl.full_result_count as full_result_count %}{{ full_result_count }} total{% endblocktrans %}</a>)</span> |     <span class="small quiet">{% blocktrans count cl.result_count as counter %}{{ counter }} result{% plural %}{{ counter }} results{% endblocktrans %} (<a href="?{% if cl.is_popup %}pop=1{% endif %}">{% blocktrans with cl.full_result_count as full_result_count %}{{ full_result_count }} total{% endblocktrans %}</a>)</span> | ||||||
| {% endif %} | {% endif %} | ||||||
| {% for pair in cl.params.items %} | {% for pair in cl.params.items %} | ||||||
|     {% ifnotequal pair.0 search_var %}<input type="hidden" name="{{ pair.0 }}" value="{{ pair.1 }}"/>{% endifnotequal %} |     {% ifnotequal pair.0 search_var %}<input type="hidden" name="{{ pair.0 }}" value="{{ pair.1 }}"/>{% endifnotequal %} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user