You are here

datetime-wrapper.html.twig in Zircon Profile 8.0

Theme override of a datetime form wrapper.

Available variables:

  • content: The form element to be output, usually a datelist, or datetime.
  • title: The title of the form element.
  • title_attributes: HTML attributes for the title wrapper.
  • description: Description text for the form element.
  • required: An indicator for whether the associated form element is required.

File

core/themes/stable/templates/form/datetime-wrapper.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. #}
  16. {%
  17. set title_classes = [
  18. required ? 'js-form-required',
  19. required ? 'form-required',
  20. ]
  21. %}
  22. {% if title %}
  23. <h4{{ title_attributes.addClass(title_classes) }}>{{ title }}</h4>
  24. {% endif %}
  25. {{ content }}
  26. {% if errors %}
  27. <div>
  28. {{ errors }}
  29. </div>
  30. {% endif %}
  31. {{ description }}