renderers.txt 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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. ``Jinja2``
  75. ----------
  76. .. class:: Jinja2
  77. This renderer is the same as the :class:`DjangoTemplates` renderer except that
  78. it uses a :class:`~django.template.backends.jinja2.Jinja2` backend. Templates
  79. for the built-in widgets are located in :source:`django/forms/jinja2` and
  80. installed apps can provide templates in a ``jinja2`` directory.
  81. To use this backend, all the forms and widgets in your project and its
  82. third-party apps must have Jinja2 templates. Unless you provide your own Jinja2
  83. templates for widgets that don't have any, you can't use this renderer. For
  84. example, :mod:`django.contrib.admin` doesn't include Jinja2 templates for its
  85. widgets due to their usage of Django template tags.
  86. ``TemplatesSetting``
  87. --------------------
  88. .. class:: TemplatesSetting
  89. This renderer gives you complete control of how form and widget templates are
  90. sourced. It uses :func:`~django.template.loader.get_template` to find templates
  91. based on what's configured in the :setting:`TEMPLATES` setting.
  92. Using this renderer along with the built-in templates requires either:
  93. * ``'django.forms'`` in :setting:`INSTALLED_APPS` and at least one engine
  94. with :setting:`APP_DIRS=True <TEMPLATES-APP_DIRS>`.
  95. * Adding the built-in templates directory in :setting:`DIRS <TEMPLATES-DIRS>`
  96. of one of your template engines. To generate that path::
  97. import django
  98. django.__path__[0] + "/forms/templates" # or '/forms/jinja2'
  99. Using this renderer requires you to make sure the form templates your project
  100. needs can be located.
  101. Context available in formset templates
  102. ======================================
  103. Formset templates receive a context from :meth:`.BaseFormSet.get_context`. By
  104. default, formsets receive a dictionary with the following values:
  105. * ``formset``: The formset instance.
  106. Context available in form templates
  107. ===================================
  108. Form templates receive a context from :meth:`.Form.get_context`. By default,
  109. forms receive a dictionary with the following values:
  110. * ``form``: The bound form.
  111. * ``fields``: All bound fields, except the hidden fields.
  112. * ``hidden_fields``: All hidden bound fields.
  113. * ``errors``: All non field related or hidden field related form errors.
  114. Context available in field templates
  115. ====================================
  116. Field templates receive a context from :meth:`.BoundField.get_context`. By
  117. default, fields receive a dictionary with the following values:
  118. * ``field``: The :class:`~django.forms.BoundField`.
  119. Context available in widget templates
  120. =====================================
  121. Widget templates receive a context from :meth:`.Widget.get_context`. By
  122. default, widgets receive a single value in the context, ``widget``. This is a
  123. dictionary that contains values like:
  124. * ``name``
  125. * ``value``
  126. * ``attrs``
  127. * ``is_hidden``
  128. * ``template_name``
  129. Some widgets add further information to the context. For instance, all widgets
  130. that subclass ``Input`` defines ``widget['type']`` and :class:`.MultiWidget`
  131. defines ``widget['subwidgets']`` for looping purposes.
  132. .. _overriding-built-in-formset-templates:
  133. Overriding built-in formset templates
  134. =====================================
  135. :attr:`.BaseFormSet.template_name`
  136. To override formset templates, you must use the :class:`TemplatesSetting`
  137. renderer. Then overriding formset templates works :doc:`the same as
  138. </howto/overriding-templates>` overriding any other template in your project.
  139. .. _overriding-built-in-form-templates:
  140. Overriding built-in form templates
  141. ==================================
  142. :attr:`.Form.template_name`
  143. To override form templates, you must use the :class:`TemplatesSetting`
  144. renderer. Then overriding form templates works :doc:`the same as
  145. </howto/overriding-templates>` overriding any other template in your project.
  146. .. _overriding-built-in-field-templates:
  147. Overriding built-in field templates
  148. ===================================
  149. :attr:`.Field.template_name`
  150. To override field templates, you must use the :class:`TemplatesSetting`
  151. renderer. Then overriding field templates works :doc:`the same as
  152. </howto/overriding-templates>` overriding any other template in your project.
  153. .. _overriding-built-in-widget-templates:
  154. Overriding built-in widget templates
  155. ====================================
  156. Each widget has a ``template_name`` attribute with a value such as
  157. ``input.html``. Built-in widget templates are stored in the
  158. ``django/forms/widgets`` path. You can provide a custom template for
  159. ``input.html`` by defining ``django/forms/widgets/input.html``, for example.
  160. See :ref:`built-in widgets` for the name of each widget's template.
  161. To override widget templates, you must use the :class:`TemplatesSetting`
  162. renderer. Then overriding widget templates works :doc:`the same as
  163. </howto/overriding-templates>` overriding any other template in your project.