datetime-wrapper.html.twig

Same filename in this branch
  1. 9 core/themes/olivero/templates/datetime-wrapper.html.twig
  2. 9 core/themes/stable9/templates/form/datetime-wrapper.html.twig
  3. 9 core/themes/seven/templates/classy/form/datetime-wrapper.html.twig
  4. 9 core/themes/claro/templates/datetime-wrapper.html.twig
  5. 9 core/themes/bartik/templates/classy/form/datetime-wrapper.html.twig
  6. 9 core/themes/stable/templates/form/datetime-wrapper.html.twig
  7. 9 core/themes/starterkit_theme/templates/form/datetime-wrapper.html.twig
  8. 9 core/themes/classy/templates/form/datetime-wrapper.html.twig
  9. 9 core/modules/system/templates/datetime-wrapper.html.twig
Same filename and directory in other branches
  1. 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/form/datetime-wrapper.html.twig
  2. 8.9.x core/themes/seven/templates/classy/form/datetime-wrapper.html.twig
  3. 8.9.x core/themes/claro/templates/datetime-wrapper.html.twig
  4. 8.9.x core/themes/bartik/templates/classy/form/datetime-wrapper.html.twig
  5. 8.9.x core/themes/stable/templates/form/datetime-wrapper.html.twig
  6. 8.9.x core/themes/classy/templates/form/datetime-wrapper.html.twig
  7. 8.9.x core/modules/system/templates/datetime-wrapper.html.twig
  8. 10 core/profiles/demo_umami/themes/umami/templates/classy/form/datetime-wrapper.html.twig
  9. 10 core/themes/olivero/templates/datetime-wrapper.html.twig
  10. 10 core/themes/stable9/templates/form/datetime-wrapper.html.twig
  11. 10 core/themes/claro/templates/datetime-wrapper.html.twig
  12. 10 core/themes/starterkit_theme/templates/form/datetime-wrapper.html.twig
  13. 10 core/modules/system/templates/datetime-wrapper.html.twig
  14. 11.x core/profiles/demo_umami/themes/umami/templates/classy/form/datetime-wrapper.html.twig
  15. 11.x core/themes/olivero/templates/datetime-wrapper.html.twig
  16. 11.x core/themes/stable9/templates/form/datetime-wrapper.html.twig
  17. 11.x core/themes/claro/templates/datetime-wrapper.html.twig
  18. 11.x core/themes/starterkit_theme/templates/form/datetime-wrapper.html.twig
  19. 11.x core/modules/system/templates/datetime-wrapper.html.twig

Theme override 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/profiles/demo_umami/themes/umami/templates/classy/form/datetime-wrapper.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. #}
  16. {%
  17. set title_classes = [
  18. 'label',
  19. required ? 'js-form-required',
  20. required ? 'form-required',
  21. ]
  22. %}
  23. {% if title %}
  24. <h4{{ title_attributes.addClass(title_classes) }}>{{ title }}</h4>
  25. {% endif %}
  26. {{ content }}
  27. {% if errors %}
  28. <div class="form-item--error-message">
  29. <strong>{{ errors }}</strong>
  30. </div>
  31. {% endif %}
  32. {% if description %}
  33. <div{{ description_attributes.addClass('description') }}>
  34. {{ description }}
  35. </div>
  36. {% endif %}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.