Ticket #12716: 12716.diff
File 12716.diff, 898 bytes (added by , 15 years ago) |
---|
-
django/contrib/admin/templates/admin/change_list.html
64 64 <p class="errornote"> 65 65 {% blocktrans count cl.formset.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} 66 66 </p> 67 <ul class="errorlist">{% for error in cl.formset.non_f ield_errors %}<li>{{ error }}</li>{% endfor %}</ul>67 <ul class="errorlist">{% for error in cl.formset.non_form_errors %}<li>{{ error }}</li>{% endfor %}</ul> 68 68 {% endif %} 69 69 <div class="module{% if cl.has_filters %} filtered{% endif %}" id="changelist"> 70 70 {% block search %}{% search_form cl %}{% endblock %}