Django

Code

Changeset 2805

Show
Ignore:
Timestamp:
05/01/06 19:06:43 (2 years ago)
Author:
adrian
Message:

magic-removal: Fixed #1644 -- Fixed typo in docs/forms.txt. Thanks, clelland

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/magic-removal/docs/forms.txt

    r2777 r2805  
    243243 
    244244    {% if form.has_errors %} 
    245     <h2>Please correct the following error{{ errors|pluralize }}:</h2> 
     245    <h2>Please correct the following error{{ form.error_dict|pluralize }}:</h2> 
    246246    {% endif %} 
    247247 
     
    288288associated with the field) as well as a ``html_error_list`` item, which is a 
    289289``<ul>`` of error messages. The above template uses these error items to 
    290 display a simple error message next to each field. 
     290display a simple error message next to each field. The error list is saved as 
     291an ``error_dict`` attribute of the ``FormWrapper`` object. 
    291292 
    292293Using the ``ChangeManipulator``