Same filename in this branch
  1. 10 core/modules/system/templates/system-config-form.html.twig
  2. 10 core/themes/stable9/templates/admin/system-config-form.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/system/templates/system-config-form.html.twig
  2. 9 core/modules/system/templates/system-config-form.html.twig

Default theme implementation for a system settings form.

This template will be used when a system config form specifies 'config_form' as its #theme callback. Otherwise, by default, system config forms will be themed by form.html.twig. This does not alter the appearance of a form at all, but is provided as a convenience for themers.

Available variables:

  • form: The confirm form.

File

core/modules/system/templates/system-config-form.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a system settings form.
  5. *
  6. * This template will be used when a system config form specifies 'config_form'
  7. * as its #theme callback. Otherwise, by default, system config forms will be
  8. * themed by form.html.twig. This does not alter the appearance of a form at
  9. * all, but is provided as a convenience for themers.
  10. *
  11. * Available variables:
  12. * - form: The confirm form.
  13. *
  14. * @ingroup themeable
  15. */
  16. #}
  17. {{ form }}

Related topics