Changeset 2805 for django/branches/magic-removal
- Timestamp:
- 05/01/06 19:06:43 (2 years ago)
- Files:
-
- django/branches/magic-removal/docs/forms.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/docs/forms.txt
r2777 r2805 243 243 244 244 {% 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> 246 246 {% endif %} 247 247 … … 288 288 associated with the field) as well as a ``html_error_list`` item, which is a 289 289 ``<ul>`` of error messages. The above template uses these error items to 290 display a simple error message next to each field. 290 display a simple error message next to each field. The error list is saved as 291 an ``error_dict`` attribute of the ``FormWrapper`` object. 291 292 292 293 Using the ``ChangeManipulator``
