You are here

details.html.twig in Drupal 8

Theme override for a details element.

Available variables

  • attributes: A list of HTML attributes for the details element.
  • errors: (optional) Any errors for this details element, may not be set.
  • title: (optional) The title of the element, may not be set.
  • summary_attributes: A list of HTML attributes for the summary element.
  • description: (optional) The description of the element, may not be set.
  • children: (optional) The children of the element, may not be set.
  • value: (optional) The value of the element, may not be set.

File

core/themes/stable/templates/form/details.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a details element.
  5. *
  6. * Available variables
  7. * - attributes: A list of HTML attributes for the details element.
  8. * - errors: (optional) Any errors for this details element, may not be set.
  9. * - title: (optional) The title of the element, may not be set.
  10. * - summary_attributes: A list of HTML attributes for the summary element.
  11. * - description: (optional) The description of the element, may not be set.
  12. * - children: (optional) The children of the element, may not be set.
  13. * - value: (optional) The value of the element, may not be set.
  14. *
  15. * @see template_preprocess_details()
  16. */
  17. #}
  18. <details{{ attributes }}>
  19. {%
  20. set summary_classes = [
  21. required ? 'js-form-required',
  22. required ? 'form-required',
  23. ]
  24. %}
  25. {%- if title -%}
  26. <summary{{ summary_attributes.addClass(summary_classes) }}>{{ title }}</summary>
  27. {%- endif -%}
  28. {% if errors %}
  29. <div>
  30. {{ errors }}
  31. </div>
  32. {% endif %}
  33. {{ description }}
  34. {{ children }}
  35. {{ value }}
  36. </details>