This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/modules/contrib/webform/templates/webform-handler-settings-summary.html.twig
2018-11-23 12:29:20 +00:00

18 lines
460 B
Twig

{#
/**
* @file
* Default theme implementation for a summary of a webform settings handler.
*
* Available variables:
* - settings: The current configuration for this debug handler.
* - handler: The settings handler.
*
* @ingroup themeable
*/
#}
{% if settings.debug %}<b class="color-error">{{ 'Debugging is enabled'|t }}</b><br />{% endif %}
{% for setting in settings.settings %}
<b>{{ setting.title }}:</b> {{ setting.value }}<br />
{% endfor %}