datetime-wrapper.html.twig

Theme override of a datetime form wrapper.

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. * @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. errors ? 'has-error',
  15. ]
  16. %}
  17. <div class="form-item form-datetime-wrapper">
  18. {% if title %}
  19. <h4{{ title_attributes.addClass(title_classes) }}>{{ title }}</h4>
  20. {% endif %}
  21. {{ content }}
  22. {% if errors %}
  23. <div class="form-item__error-message">
  24. {{ errors }}
  25. </div>
  26. {% endif %}
  27. {% if description %}
  28. <div{{ description_attributes.addClass('form-item__description') }}>
  29. {{ description }}
  30. </div>
  31. {% endif %}
  32. </div>

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