Author: jezdez
Date: 2010-02-07 09:55:40 -0600 (Sun, 07 Feb 2010)
New Revision: 12398

Modified:
   django/trunk/django/contrib/admin/templates/admin/change_list.html
Log:
Fixed #12716 - Typo in the admin change list template. Thanks, kbrownlees.

Modified: django/trunk/django/contrib/admin/templates/admin/change_list.html
===================================================================
--- django/trunk/django/contrib/admin/templates/admin/change_list.html  
2010-02-07 14:42:16 UTC (rev 12397)
+++ django/trunk/django/contrib/admin/templates/admin/change_list.html  
2010-02-07 15:55:40 UTC (rev 12398)
@@ -67,7 +67,7 @@
         <p class="errornote">
         {% blocktrans count cl.formset.errors|length as counter %}Please 
correct the error below.{% plural %}Please correct the errors below.{% 
endblocktrans %}
         </p>
-        <ul class="errorlist">{% for error in cl.formset.non_field_errors 
%}<li>{{ error }}</li>{% endfor %}</ul>
+        <ul class="errorlist">{% for error in cl.formset.non_form_errors 
%}<li>{{ error }}</li>{% endfor %}</ul>
     {% endif %}
     <div class="module{% if cl.has_filters %} filtered{% endif %}" 
id="changelist">
       {% block search %}{% search_form cl %}{% endblock %}

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to