diff options
| author | Carlton Gibson <carlton.gibson@noumenal.es> | 2022-04-26 16:01:59 +0200 |
|---|---|---|
| committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2022-04-27 10:21:04 +0200 |
| commit | 476d4d508717977101bba1a7f765653e48e88e76 (patch) | |
| tree | 239da180ce3d0586406d3d1b36b5657bd40447a5 /docs | |
| parent | 832096478cf37b911688d061281348f74bf09e93 (diff) | |
Refs #32339 -- Allowed renderer to specify default form and formset templates.
Co-authored-by: David Smith <smithdc@gmail.com>
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/forms/api.txt | 18 | ||||
| -rw-r--r-- | docs/ref/forms/renderers.txt | 29 | ||||
| -rw-r--r-- | docs/releases/4.1.txt | 14 | ||||
| -rw-r--r-- | docs/topics/forms/formsets.txt | 21 | ||||
| -rw-r--r-- | docs/topics/forms/index.txt | 42 |
5 files changed, 105 insertions, 19 deletions
diff --git a/docs/ref/forms/api.txt b/docs/ref/forms/api.txt index 4d3cf8997d..a6b4d11f4a 100644 --- a/docs/ref/forms/api.txt +++ b/docs/ref/forms/api.txt @@ -527,12 +527,18 @@ a form object, and each rendering method returns a string. .. attribute:: Form.template_name -The name of a template that is going to be rendered if the form is cast into a -string, e.g. via ``print(form)`` or in a template via ``{{ form }}``. By -default this template is ``'django/forms/default.html'``, which is a proxy for -``'django/forms/table.html'``. The template can be changed per form by -overriding the ``template_name`` attribute or more generally by overriding the -default template, see also :ref:`overriding-built-in-form-templates`. +The name of the template rendered if the form is cast into a string, e.g. via +``print(form)`` or in a template via ``{{ form }}``. + +By default, a property returning the value of the renderer's +:attr:`~django.forms.renderers.BaseRenderer.form_template_name`. You may set it +as a string template name in order to override that for a particular form +class. + +.. versionchanged:: 4.1 + + In older versions ``template_name`` defaulted to the string value + ``'django/forms/default.html'``. ``template_name_label`` ----------------------- diff --git a/docs/ref/forms/renderers.txt b/docs/ref/forms/renderers.txt index 809b151516..8c0263e051 100644 --- a/docs/ref/forms/renderers.txt +++ b/docs/ref/forms/renderers.txt @@ -26,9 +26,16 @@ A custom renderer can be specified by updating the :setting:`FORM_RENDERER` setting. It defaults to ``'``:class:`django.forms.renderers.DjangoTemplates`\ ``'``. -You can also provide a custom renderer by setting the +By specifying a custom form renderer and overriding +:attr:`~.BaseRenderer.form_template_name` you can adjust the default form +markup across your project from a single place. + +You can also provide a custom renderer per-form or per-widget by setting the :attr:`.Form.default_renderer` attribute or by using the ``renderer`` argument -of :meth:`.Widget.render`. +of :meth:`.Form.render`, or :meth:`.Widget.render`. + +Matching points apply to formset rendering. See :ref:`formset-rendering` for +discussion. Use one of the :ref:`built-in template form renderers <built-in-template-form-renderers>` or implement your own. Custom renderers @@ -40,6 +47,24 @@ should return a rendered templates (as a string) or raise The base class for the built-in form renderers. + .. attribute:: form_template_name + + .. versionadded:: 4.1 + + The default name of the template to use to render a form. + + Defaults to ``"django/forms/default.html"``, which is a proxy for + ``"django/forms/table.html"``. + + .. attribute:: formset_template_name + + .. versionadded:: 4.1 + + The default name of the template to use to render a formset. + + Defaults to ``"django/forms/formsets/default.html"``, which is a proxy + for ``"django/forms/formsets/table.html"``. + .. method:: get_template(template_name) Subclasses must implement this method with the appropriate template diff --git a/docs/releases/4.1.txt b/docs/releases/4.1.txt index b564a325a9..4cad556dc3 100644 --- a/docs/releases/4.1.txt +++ b/docs/releases/4.1.txt @@ -244,6 +244,20 @@ File Uploads Forms ~~~~~ +* The default template used to render forms when cast to a string, e.g. in + templates as ``{{ form }}``, is now configurable at the project-level by + setting :attr:`~django.forms.renderers.BaseRenderer.form_template_name` on + the class provided for :setting:`FORM_RENDERER`. + + :attr:`.Form.template_name` is now a property deferring to the renderer, but + may be overridden with a string value to specify the template name per-form + class. + + Similarly, the default template used to render formsets can be specified via + the matching + :attr:`~django.forms.renderers.BaseRenderer.formset_template_name` renderer + attribute. + * The new :meth:`~django.forms.BoundField.legend_tag` allows rendering field labels in ``<legend>`` tags via the new ``tag`` argument of :meth:`~django.forms.BoundField.label_tag`. diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt index a549a047cd..0206959f1d 100644 --- a/docs/topics/forms/formsets.txt +++ b/docs/topics/forms/formsets.txt @@ -783,11 +783,22 @@ Formsets have the following attributes and methods associated with rendering: .. versionadded:: 4.0 - The name of the template used when calling ``__str__`` or :meth:`.render`. - 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. + The name of the template rendered if the formset is cast into a string, + e.g. via ``print(formset)`` or in a template via ``{{ formset }}``. + + By default, a property returning the value of the renderer's + :attr:`~django.forms.renderers.BaseRenderer.formset_template_name`. You may + set it as a string template name in order to override that for a particular + formset class. + + This template will be used to render 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`. + + .. versionchanged:: 4.1 + + In older versions ``template_name`` defaulted to the string value + ``'django/forms/formset/default.html'``. .. attribute:: BaseFormSet.template_name_p diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt index 2d0d61aa02..0e98e50692 100644 --- a/docs/topics/forms/index.txt +++ b/docs/topics/forms/index.txt @@ -759,10 +759,14 @@ Reusable form templates If your site uses the same rendering logic for forms in multiple places, you can reduce duplication by saving the form's loop in a standalone template and -overriding the forms :attr:`~django.forms.Form.template_name` attribute to -render the form using the custom template. The below example will result in -``{{ form }}`` being rendered as the output of the ``form_snippet.html`` -template. +setting a custom :setting:`FORM_RENDERER` to use that +:attr:`~django.forms.renderers.BaseRenderer.form_template_name` site-wide. You +can also customize per-form by overriding the form's +:attr:`~django.forms.Form.template_name` attribute to render the form using the +custom template. + +The below example will result in ``{{ form }}`` being rendered as the output of +the ``form_snippet.html`` template. In your templates: @@ -779,16 +783,42 @@ In your templates: </div> {% endfor %} -In your form:: +Then you can configure the :setting:`FORM_RENDERER` setting: + +.. code-block:: python + :caption: settings.py + + from django.forms.renderers import TemplatesSetting + + class CustomFormRenderer(TemplatesSetting): + form_template_name = "form_snippet.html" + + FORM_RENDERER = "project.settings.CustomFormRenderer" + +… or for a single form:: class MyForm(forms.Form): - template_name = 'form_snippet.html' + template_name = "form_snippet.html" ... +… or for a single render of a form instance, passing in the template name to +the :meth:`.Form.render()`. Here's an example of this being used in a view:: + + def index(request): + form = MyForm() + rendered_form = form.render("form_snippet.html") + context = {'form': rendered_form} + return render(request, 'index.html', context) + .. versionchanged:: 4.0 Template rendering of forms was added. +.. versionchanged:: 4.1 + + The ability to set the default ``form_template_name`` on the form renderer + was added. + Further topics ============== |
