You are here

search-api-admin-fields-table.html.twig in Search API 8

Default theme implementation for displaying the Search API fields table.

Available variables:

  • table: The table of fields.
  • note: The table note.

File

templates/search-api-admin-fields-table.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for displaying the Search API fields table.
  5. *
  6. * Available variables:
  7. * - table: The table of fields.
  8. * - note: The table note.
  9. *
  10. * @see template_preprocess_search_api_admin_fields_table()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. {{ table }}
  16. {% if note %}
  17. {{ note }}
  18. {% endif %}