Ticket #12643: 12833.diff

File 12833.diff, 840 bytes (added by Preston Holmes, 15 years ago)
  • docs/ref/forms/validation.txt

     
    9191      ``non_field_errors()`` method if you need to. If you want to attach
    9292      errors to a specific field in the form, you will need to access the
    9393      ``_errors`` attribute on the form, which is `described later`_.
     94     
     95      Also note that there are special considerations when overriding the
     96      ``clean()`` method of a ``ModelForm`` subclass. (see the :ref:`ModelForm
     97      documentation <topics-forms-modelforms>`
     98      for more information)
    9499
    95100These methods are run in the order given above, one field at a time.  That is,
    96101for each field in the form (in the order they are declared in the form
Back to Top