| | 234 | Other than the ``save()`` and ``save_m2m()`` methods, a ``ModelForm`` |
|---|
| | 235 | works exactly the same way as any other ``newforms`` form. For |
|---|
| | 236 | example, the ``is_valid()`` method is used to check for validity, the |
|---|
| | 237 | ``is_multipart()`` method is used to determine whether a form requires |
|---|
| | 238 | multipart file upload (and hence whether ``request.FILES`` must be |
|---|
| | 239 | passed to the form), etc.; see `the standard newforms documentation`_ |
|---|
| | 240 | for more information. |
|---|
| | 241 | |
|---|
| | 242 | .. _the standard newforms documentation: ../newforms/ |
|---|
| | 243 | |
|---|