Skip to content

Commit

Permalink
Refs #32339 -- Doc'd BaseFormSet.as_div()
Browse files Browse the repository at this point in the history
  • Loading branch information
smithdc1 authored and felixxm committed Feb 15, 2023
1 parent f9f0092 commit 4038a8d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docs/topics/forms/formsets.txt
Original file line number Diff line number Diff line change
Expand Up @@ -892,14 +892,18 @@ Formsets have the following attributes and methods associated with rendering:

.. method:: BaseFormSet.render(template_name=None, context=None, renderer=None)

The render method is called by ``__str__`` as well as the :meth:`.as_p`,
:meth:`.as_ul`, and :meth:`.as_table` methods. All arguments are optional
and will default to:
The render method is called by ``__str__`` as well as the :meth:`.as_div`,
:meth:`.as_p`, :meth:`.as_ul`, and :meth:`.as_table` methods. All arguments
are optional and will default to:

* ``template_name``: :attr:`.template_name`
* ``context``: Value returned by :meth:`.get_context`
* ``renderer``: Value returned by :attr:`.renderer`

.. method:: BaseFormSet.as_div()

Renders the formset with the :attr:`.template_name_div` template.

.. method:: BaseFormSet.as_p()

Renders the formset with the :attr:`.template_name_p` template.
Expand Down

0 comments on commit 4038a8d

Please sign in to comment.