Default theme implementation for a summary of a webform spambot validaton handler.

Available variables:

  • settings: The current configuration for this spambot validation handler.
  • handler: The email handler.

File

templates/webform-handler-spambot-validation-summary.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a summary of a webform spambot validaton handler.
  5. *
  6. * Available variables:
  7. * - settings: The current configuration for this spambot validation handler.
  8. * - handler: The email handler.
  9. *
  10. * @ingroup themeable
  11. */
  12. #}
  13. {% if settings.debug %}<strong class="color-error">{{ 'Debugging is enabled'|t }}</strong><br />{% endif %}
  14. <b>Validated Fields</b>
  15. {% if settings.email_field %}<b>{{ 'Email:'|t }}</b> {{ settings.email_field }}<br />{% endif %}
  16. {% if settings.username_field %}<b>{{ 'Username:'|t }}</b> {{ settings.username_field }}<br />{% endif %}