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.