Same filename in this branch
  1. 10 core/modules/system/templates/datetime-wrapper.html.twig
  2. 10 core/themes/claro/templates/datetime-wrapper.html.twig
  3. 10 core/themes/olivero/templates/datetime-wrapper.html.twig
  4. 10 core/themes/stable9/templates/form/datetime-wrapper.html.twig
  5. 10 core/themes/starterkit_theme/templates/form/datetime-wrapper.html.twig
  6. 10 core/profiles/demo_umami/themes/umami/templates/classy/form/datetime-wrapper.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/system/templates/datetime-wrapper.html.twig
  2. 9 core/modules/system/templates/datetime-wrapper.html.twig

Default theme implementation of a datetime form wrapper.

Available variables:

  • content: The form element to be output, usually a datelist, or datetime.
  • title: The title of the form element.
  • title_attributes: HTML attributes for the title wrapper.
  • description: Description text for the form element.
  • required: An indicator for whether the associated form element is required.

See also

template_preprocess_datetime_wrapper()

File

core/modules/system/templates/datetime-wrapper.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of a datetime form wrapper.
  5. *
  6. * Available variables:
  7. * - content: The form element to be output, usually a datelist, or datetime.
  8. * - title: The title of the form element.
  9. * - title_attributes: HTML attributes for the title wrapper.
  10. * - description: Description text for the form element.
  11. * - required: An indicator for whether the associated form element is required.
  12. *
  13. * @see template_preprocess_datetime_wrapper()
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. {%
  19. set title_classes = [
  20. required ? 'js-form-required',
  21. required ? 'form-required',
  22. ]
  23. %}
  24. {% if title %}
  25. <h4{{ title_attributes.addClass(title_classes) }}>{{ title }}</h4>
  26. {% endif %}
  27. {{ content }}
  28. {% if errors %}
  29. <div>
  30. {{ errors }}
  31. </div>
  32. {% endif %}
  33. {% if description %}
  34. <div{{ description_attributes }}>
  35. {{ description }}
  36. </div>
  37. {% endif %}

Related topics