diff options
| author | Tim Graham <timograham@gmail.com> | 2016-09-26 13:54:26 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-09-26 13:58:37 -0400 |
| commit | 8fec24f7c3a0e070fa5bc43b7b631d4a0cefd1c2 (patch) | |
| tree | 0ba1603ffb6cc410a8091bc6ded1b9cede7aea98 | |
| parent | 5731342dbc0e2e0395d53ba9ad54dc5ba49a8560 (diff) | |
[1.10.x] Fixed #27278 -- Fixed an anchor in docs/topics/forms/formsets.txt.
Backport of 8d233a2132c20d85f4e863a3eb62168f667c45df from master
| -rw-r--r-- | docs/topics/forms/formsets.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt index 922df46a2c..201e021167 100644 --- a/docs/topics/forms/formsets.txt +++ b/docs/topics/forms/formsets.txt @@ -296,8 +296,6 @@ The formset ``clean`` method is called after all the ``Form.clean`` methods have been called. The errors will be found using the ``non_form_errors()`` method on the formset. -.. _validate_max: - Validating the number of forms in a formset =========================================== @@ -305,6 +303,8 @@ Django provides a couple ways to validate the minimum or maximum number of submitted forms. Applications which need more customizable validation of the number of forms should use custom formset validation. +.. _validate_max: + ``validate_max`` ---------------- |
