datetime-wrapper.html.twig 879 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of a datetime form wrapper.
  5. *
  6. * Available variables:
  7. * - content: The form element to be output, usually a datelist, or datetime.
  8. * - title: The title of the form element.
  9. * - title_attributes: HTML attributes for the title wrapper.
  10. * - description: Description text for the form element.
  11. * - required: An indicator for whether the associated form element is required.
  12. *
  13. * @see template_preprocess_datetime_wrapper()
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. {%
  19. set title_classes = [
  20. required ? 'js-form-required',
  21. required ? 'form-required',
  22. ]
  23. %}
  24. {% if title %}
  25. <h4{{ title_attributes.addClass(title_classes) }}>{{ title }}</h4>
  26. {% endif %}
  27. {{ content }}
  28. {% if errors %}
  29. <div>
  30. {{ errors }}
  31. </div>
  32. {% endif %}
  33. {% if description %}
  34. <div{{ description_attributes }}>
  35. {{ description }}
  36. </div>
  37. {% endif %}