datetime-wrapper.html.twig

Same filename in this branch
  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/bartik/templates/classy/form/datetime-wrapper.html.twig
  4. 8.9.x core/themes/stable/templates/form/datetime-wrapper.html.twig
  5. 8.9.x core/themes/classy/templates/form/datetime-wrapper.html.twig
  6. 8.9.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. 10 core/profiles/demo_umami/themes/umami/templates/classy/form/datetime-wrapper.html.twig
  12. 10 core/themes/olivero/templates/datetime-wrapper.html.twig
  13. 10 core/themes/stable9/templates/form/datetime-wrapper.html.twig
  14. 10 core/themes/claro/templates/datetime-wrapper.html.twig
  15. 10 core/themes/starterkit_theme/templates/form/datetime-wrapper.html.twig
  16. 10 core/modules/system/templates/datetime-wrapper.html.twig
  17. 11.x core/profiles/demo_umami/themes/umami/templates/classy/form/datetime-wrapper.html.twig
  18. 11.x core/themes/olivero/templates/datetime-wrapper.html.twig
  19. 11.x core/themes/stable9/templates/form/datetime-wrapper.html.twig
  20. 11.x core/themes/claro/templates/datetime-wrapper.html.twig
  21. 11.x core/themes/starterkit_theme/templates/form/datetime-wrapper.html.twig
  22. 11.x core/modules/system/templates/datetime-wrapper.html.twig

Theme override of a datetime form wrapper.

@todo Refactor when https://www.drupal.org/node/3010558 is fixed.

See also

template_preprocess_form_element()

File

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

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

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