diff options
| author | Claude Paroz <claude@2xlibre.net> | 2012-05-22 13:56:03 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2012-05-22 13:56:03 +0200 |
| commit | 6219591f2e5ac725e30b1583ef7fd28063d2ad75 (patch) | |
| tree | 84b1663236de39c1af195d8dd11aa935e90cbb87 /docs | |
| parent | 115d522c84d85c99b2a154e29174d95380eaf0c1 (diff) | |
Fixed #18244 -- Documented that formset.has_changed is a 1.4 addition.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/forms/formsets.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt index ac45c50aa8..42b9d1f490 100644 --- a/docs/topics/forms/formsets.txt +++ b/docs/topics/forms/formsets.txt @@ -152,6 +152,8 @@ As we can see, ``formset.errors`` is a list whose entries correspond to the forms in the formset. Validation was performed for each of the two forms, and the expected error message appears for the second item. +.. versionadded:: 1.4 + We can also check if form data differs from the initial data (i.e. the form was sent without any data):: |
