diff options
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/class-based-views.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/ref/class-based-views.txt b/docs/ref/class-based-views.txt index e1ff28977d..5223aee018 100644 --- a/docs/ref/class-based-views.txt +++ b/docs/ref/class-based-views.txt @@ -431,9 +431,14 @@ FormMixin .. method:: get_initial() - Retrieve initial data for the form. By default, returns + Retrieve initial data for the form. By default, returns a copy of :attr:`.initial`. + .. admonition:: Changed in 1.4 + + In Django 1.3, this method was returning the :attr:`initial` class + variable itself. + .. method:: get_form_class() Retrieve the form class to instantiate. By default |
