details.html.twig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. {%- if title -%}
  20. {%
  21. set summary_classes = [
  22. required ? 'js-form-required',
  23. required ? 'form-required',
  24. ]
  25. %}
  26. <summary{{ summary_attributes.addClass(summary_classes) }}>{{ title }}</summary>
  27. {%- endif -%}
  28. <div class="details-wrapper">
  29. {% if errors %}
  30. <div class="form-item--error-message">
  31. <strong>{{ errors }}</strong>
  32. </div>
  33. {% endif %}
  34. {%- if description -%}
  35. <div class="details-description">{{ description }}</div>
  36. {%- endif -%}
  37. {%- if children -%}
  38. {{ children }}
  39. {%- endif -%}
  40. {%- if value -%}
  41. {{ value }}
  42. {%- endif -%}
  43. </div>
  44. </details>