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