mirror / django-trunk (http://djangoproject.com/)

Mirror of the Django trunk.

Clone this repository (size: 29.1 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/mirror/django-trunk/

Changed (Δ1 byte):

Up to file-list django/contrib/admin/templates/admin/change_list.html:

67
67
        <p class="errornote">
68
68
        {% blocktrans count cl.formset.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}
69
69
        </p>
70
        <ul class="errorlist">{% for error in cl.formset.non_field_errors %}<li>{{ error }}</li>{% endfor %}</ul>
70
        <ul class="errorlist">{% for error in cl.formset.non_form_errors %}<li>{{ error }}</li>{% endfor %}</ul>
71
71
    {% endif %}
72
72
    <div class="module{% if cl.has_filters %} filtered{% endif %}" id="changelist">
73
73
      {% block search %}{% search_form cl %}{% endblock %}