renderers.txt 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. ======================
  2. The form rendering API
  3. ======================
  4. .. module:: django.forms.renderers
  5. :synopsis: Built-in form renderers.
  6. Django's form widgets are rendered using Django's :doc:`template engines
  7. system </topics/templates>`.
  8. The form rendering process can be customized at several levels:
  9. * Widgets can specify custom template names.
  10. * Forms and widgets can specify custom renderer classes.
  11. * A widget's template can be overridden by a project. (Reusable applications
  12. typically shouldn't override built-in templates because they might conflict
  13. with a project's custom templates.)
  14. .. _low-level-widget-render-api:
  15. The low-level render API
  16. ========================
  17. The rendering of form templates is controlled by a customizable renderer class.
  18. A custom renderer can be specified by updating the :setting:`FORM_RENDERER`
  19. setting. It defaults to
  20. ``'``:class:`django.forms.renderers.DjangoTemplates`\ ``'``.
  21. By specifying a custom form renderer and overriding
  22. :attr:`~.BaseRenderer.form_template_name` you can adjust the default form
  23. markup across your project from a single place.
  24. You can also provide a custom renderer per-form or per-widget by setting the
  25. :attr:`.Form.default_renderer` attribute or by using the ``renderer`` argument
  26. of :meth:`.Form.render`, or :meth:`.Widget.render`.
  27. Matching points apply to formset rendering. See :ref:`formset-rendering` for
  28. discussion.
  29. Use one of the :ref:`built-in template form renderers
  30. <built-in-template-form-renderers>` or implement your own. Custom renderers
  31. must implement a ``render(template_name, context, request=None)`` method. It
  32. should return a rendered templates (as a string) or raise
  33. :exc:`~django.template.TemplateDoesNotExist`.
  34. .. class:: BaseRenderer
  35. The base class for the built-in form renderers.
  36. .. attribute:: form_template_name
  37. The default name of the template to use to render a form.
  38. Defaults to ``"django/forms/div.html"`` template.
  39. .. attribute:: formset_template_name
  40. The default name of the template to use to render a formset.
  41. Defaults to ``"django/forms/formsets/div.html"`` template.
  42. .. attribute:: field_template_name
  43. The default name of the template used to render a ``BoundField``.
  44. Defaults to ``"django/forms/field.html"``
  45. .. attribute:: bound_field_class
  46. .. versionadded:: 5.2
  47. The default class used to represent form fields across the project.
  48. Defaults to :class:`.BoundField` class.
  49. This can be customized further using :attr:`.Form.bound_field_class`
  50. for per-form overrides, or :attr:`.Field.bound_field_class` for
  51. per-field overrides.
  52. .. method:: get_template(template_name)
  53. Subclasses must implement this method with the appropriate template
  54. finding logic.
  55. .. method:: render(template_name, context, request=None)
  56. Renders the given template, or raises
  57. :exc:`~django.template.TemplateDoesNotExist`.
  58. .. _built-in-template-form-renderers:
  59. Built-in-template form renderers
  60. ================================
  61. ``DjangoTemplates``
  62. -------------------
  63. .. class:: DjangoTemplates
  64. This renderer uses a standalone
  65. :class:`~django.template.backends.django.DjangoTemplates`
  66. engine (unconnected to what you might have configured in the
  67. :setting:`TEMPLATES` setting). It loads templates first from the built-in form
  68. templates directory in :source:`django/forms/templates` and then from the
  69. installed apps' templates directories using the :class:`app_directories
  70. <django.template.loaders.app_directories.Loader>` loader.
  71. If you want to render templates with customizations from your
  72. :setting:`TEMPLATES` setting, such as context processors for example, use the
  73. :class:`TemplatesSetting` renderer.
  74. .. class:: DjangoDivFormRenderer
  75. .. deprecated:: 5.0
  76. The alias of :class:`DjangoTemplates`.
  77. ``Jinja2``
  78. ----------
  79. .. class:: Jinja2
  80. This renderer is the same as the :class:`DjangoTemplates` renderer except that
  81. it uses a :class:`~django.template.backends.jinja2.Jinja2` backend. Templates
  82. for the built-in widgets are located in :source:`django/forms/jinja2` and
  83. installed apps can provide templates in a ``jinja2`` directory.
  84. To use this backend, all the forms and widgets in your project and its
  85. third-party apps must have Jinja2 templates. Unless you provide your own Jinja2
  86. templates for widgets that don't have any, you can't use this renderer. For
  87. example, :mod:`django.contrib.admin` doesn't include Jinja2 templates for its
  88. widgets due to their usage of Django template tags.
  89. .. class:: Jinja2DivFormRenderer
  90. .. deprecated:: 5.0
  91. The alias of :class:`Jinja2`.
  92. ``TemplatesSetting``
  93. --------------------
  94. .. class:: TemplatesSetting
  95. This renderer gives you complete control of how form and widget templates are
  96. sourced. It uses :func:`~django.template.loader.get_template` to find templates
  97. based on what's configured in the :setting:`TEMPLATES` setting.
  98. Using this renderer along with the built-in templates requires either:
  99. * ``'django.forms'`` in :setting:`INSTALLED_APPS` and at least one engine
  100. with :setting:`APP_DIRS=True <TEMPLATES-APP_DIRS>`.
  101. * Adding the built-in templates directory in :setting:`DIRS <TEMPLATES-DIRS>`
  102. of one of your template engines. To generate that path::
  103. import django
  104. django.__path__[0] + "/forms/templates" # or '/forms/jinja2'
  105. Using this renderer requires you to make sure the form templates your project
  106. needs can be located.
  107. Context available in formset templates
  108. ======================================
  109. Formset templates receive a context from :meth:`.BaseFormSet.get_context`. By
  110. default, formsets receive a dictionary with the following values:
  111. * ``formset``: The formset instance.
  112. Context available in form templates
  113. ===================================
  114. Form templates receive a context from :meth:`.Form.get_context`. By default,
  115. forms receive a dictionary with the following values:
  116. * ``form``: The bound form.
  117. * ``fields``: All bound fields, except the hidden fields.
  118. * ``hidden_fields``: All hidden bound fields.
  119. * ``errors``: All non field related or hidden field related form errors.
  120. Context available in field templates
  121. ====================================
  122. Field templates receive a context from :meth:`.BoundField.get_context`. By
  123. default, fields receive a dictionary with the following values:
  124. * ``field``: The :class:`~django.forms.BoundField`.
  125. Context available in widget templates
  126. =====================================
  127. Widget templates receive a context from :meth:`.Widget.get_context`. By
  128. default, widgets receive a single value in the context, ``widget``. This is a
  129. dictionary that contains values like:
  130. * ``name``
  131. * ``value``
  132. * ``attrs``
  133. * ``is_hidden``
  134. * ``template_name``
  135. Some widgets add further information to the context. For instance, all widgets
  136. that subclass ``Input`` defines ``widget['type']`` and :class:`.MultiWidget`
  137. defines ``widget['subwidgets']`` for looping purposes.
  138. .. _overriding-built-in-formset-templates:
  139. Overriding built-in formset templates
  140. =====================================
  141. :attr:`.BaseFormSet.template_name`
  142. To override formset templates, you must use the :class:`TemplatesSetting`
  143. renderer. Then overriding formset templates works :doc:`the same as
  144. </howto/overriding-templates>` overriding any other template in your project.
  145. .. _overriding-built-in-form-templates:
  146. Overriding built-in form templates
  147. ==================================
  148. :attr:`.Form.template_name`
  149. To override form templates, you must use the :class:`TemplatesSetting`
  150. renderer. Then overriding form templates works :doc:`the same as
  151. </howto/overriding-templates>` overriding any other template in your project.
  152. .. _overriding-built-in-field-templates:
  153. Overriding built-in field templates
  154. ===================================
  155. :attr:`.Field.template_name`
  156. To override field templates, you must use the :class:`TemplatesSetting`
  157. renderer. Then overriding field templates works :doc:`the same as
  158. </howto/overriding-templates>` overriding any other template in your project.
  159. .. _overriding-built-in-widget-templates:
  160. Overriding built-in widget templates
  161. ====================================
  162. Each widget has a ``template_name`` attribute with a value such as
  163. ``input.html``. Built-in widget templates are stored in the
  164. ``django/forms/widgets`` path. You can provide a custom template for
  165. ``input.html`` by defining ``django/forms/widgets/input.html``, for example.
  166. See :ref:`built-in widgets` for the name of each widget's template.
  167. To override widget templates, you must use the :class:`TemplatesSetting`
  168. renderer. Then overriding widget templates works :doc:`the same as
  169. </howto/overriding-templates>` overriding any other template in your project.