datetime-wrapper.html.twig

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

Theme override of a datetime form wrapper.

See also

template_preprocess_form_element()

File

core/themes/olivero/templates/datetime-wrapper.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override of a datetime form wrapper.
  5. *
  6. * @see template_preprocess_form_element()
  7. */
  8. #}
  9. {%
  10. set title_classes = [
  11. 'form-item__label',
  12. required ? 'js-form-required',
  13. required ? 'form-required',
  14. ]
  15. %}
  16. <div class="form-item form-datetime-wrapper">
  17. {% if title %}
  18. <h4{{ title_attributes.addClass(title_classes) }}>{{ title }}</h4>
  19. {% endif %}
  20. {{ content }}
  21. {% if errors %}
  22. <div class="form-item__error-message">
  23. {{ errors }}
  24. </div>
  25. {% endif %}
  26. {% if description %}
  27. <div{{ description_attributes.addClass('form-item__description') }}>
  28. {{ description }}
  29. </div>
  30. {% endif %}
  31. </div>

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