You are here

group-settings-help.html.twig in Open Social 8.8

Theme override to display help text for file fields.

Available variables:

  • popover: Markup to display the descriptions as a popover instead.

File

themes/socialbase/templates/group/group-settings-help.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override to display help text for file fields.
  5. *
  6. * Available variables:
  7. * - popover: Markup to display the descriptions as a popover instead.
  8. *
  9. * @see template_preprocess_group_settings_help()
  10. */
  11. #}
  12. {% if popover %}
  13. {{ popover_toggle }}
  14. <div class="hidden help-block" id="{{ popover_id }}">
  15. {{ popover_info }}
  16. </div>
  17. {% endif %}