You are here

redhen-dedupe-form-table.html.twig in RedHen CRM 8

redhen-dedupe-form-table.html.twig Default theme implementation to present Merge Form data.

This template is used when using dedupe functionality.

Available variables:

  • content: A list of content items. Use 'content' to print all content, or
  • attributes: HTML attributes for the container element.

File

modules/redhen_dedupe/templates/redhen-dedupe-form-table.html.twig
View source
  1. {#
  2. /**
  3. * @file redhen-dedupe-form-table.html.twig
  4. * Default theme implementation to present Merge Form data.
  5. *
  6. * This template is used when using dedupe functionality.
  7. *
  8. *
  9. * Available variables:
  10. * - content: A list of content items. Use 'content' to print all content, or
  11. * - attributes: HTML attributes for the container element.
  12. *
  13. * @see template_preprocess_redhen_contact()
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. <div{{ attributes.addClass('redhen_dedupe') }}>
  19. {% if content %}
  20. {{- content -}}
  21. {% endif %}
  22. </div>