Commit 6cd8e0f6 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Added versionadded markers for ModelForm field ordering, added in [10062].

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10144 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 214c7921
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -259,8 +259,12 @@ model fields:

2. Use the ``fields`` attribute of the ``ModelForm``'s inner ``Meta``
   class.  This attribute, if given, should be a list of field names
   to include in the form. The form will render the fields in the same
   order they are specified in the ``fields`` attribute.
   to include in the form.

   .. versionchanged:: 1.1

   The form will render the fields in the same order they are specified in the
   ``fields`` attribute.

3. Use the ``exclude`` attribute of the ``ModelForm``'s inner ``Meta``
   class.  This attribute, if given, should be a list of field names
@@ -340,6 +344,8 @@ parameter when declaring the form field::
Changing the order of fields
----------------------------

.. versionadded:: 1.1

By default, a ``ModelForm`` will render fields in the same order that they are
defined on the model, with ``ManyToManyField`` instances appearing last. If
you want to change the order in which fields are rendered, you can use the