summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJoel Farthing <joel.f.farthing@gmail.com>2021-09-21 21:12:26 -0600
committerCarlton Gibson <carlton.gibson@noumenal.es>2021-09-22 11:26:24 +0200
commit2f144323756fc6f8517e357c540f3570356d9eba (patch)
tree601ab53faeabe62f613b60a32235b82b44b37d66 /docs
parentbc4c7e5d68e01207268c868932eb14ae4206f02c (diff)
Fixed #33128 -- Corrected possessive 's usage in FormSet docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/forms/formsets.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt
index 92810091ec..c162d771c2 100644
--- a/docs/topics/forms/formsets.txt
+++ b/docs/topics/forms/formsets.txt
@@ -784,18 +784,18 @@ Formsets have five attributes and five methods associated with rendering.
.. versionadded:: 4.0
The name of the template used when calling ``__str__`` or :meth:`.render`.
- This template renders the formsets management forms and then each form in
- the formset as per the template defined by the
- forms :attr:`~django.forms.Form.template_name`. This is a proxy of
- ``as_table`` by default.
+ This template renders the formset's management form and then each form in
+ the formset as per the template defined by the form's
+ :attr:`~django.forms.Form.template_name`. This is a proxy of ``as_table``
+ by default.
.. attribute:: BaseFormSet.template_name_p
.. versionadded:: 4.0
The name of the template used when calling :meth:`.as_p`. By default this
- is ``'django/forms/formsets/p.html'``. This template renders the formsets
- management forms and then each form in the formset as per the forms
+ is ``'django/forms/formsets/p.html'``. This template renders the formset's
+ management form and then each form in the formset as per the form's
:meth:`~django.forms.Form.as_p` method.
.. attribute:: BaseFormSet.template_name_table
@@ -804,16 +804,16 @@ Formsets have five attributes and five methods associated with rendering.
The name of the template used when calling :meth:`.as_table`. By default
this is ``'django/forms/formsets/table.html'``. This template renders the
- formsets management forms and then each form in the formset as per the
- forms :meth:`~django.forms.Form.as_table` method.
+ formset's management form and then each form in the formset as per the
+ form's :meth:`~django.forms.Form.as_table` method.
.. attribute:: BaseFormSet.template_name_ul
.. versionadded:: 4.0
The name of the template used when calling :meth:`.as_ul`. By default this
- is ``'django/forms/formsets/ul.html'``. This template renders the formsets
- management forms and then each form in the formset as per the forms
+ is ``'django/forms/formsets/ul.html'``. This template renders the formset's
+ management form and then each form in the formset as per the form's
:meth:`~django.forms.Form.as_ul` method.
.. method:: BaseFormSet.get_context()