Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

datetime-wrapper.html.twig

Same filename in this branch
  1. 11.1.x core/profiles/demo_umami/themes/umami/templates/classy/form/datetime-wrapper.html.twig
  2. 11.1.x core/themes/stable9/templates/form/datetime-wrapper.html.twig
  3. 11.1.x core/themes/starterkit_theme/templates/form/datetime-wrapper.html.twig
  4. 11.1.x core/themes/claro/templates/datetime-wrapper.html.twig
  5. 11.1.x 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>

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal