node-edit-form.html.twig in Drupal 10
Same filename in this branch
- 10 core/themes/claro/templates/node-edit-form.html.twig
- 10 core/themes/seven/templates/node-edit-form.html.twig
- 10 core/modules/node/templates/node-edit-form.html.twig
- 10 core/themes/starterkit_theme/templates/content-edit/node-edit-form.html.twig
- 10 core/themes/classy/templates/content-edit/node-edit-form.html.twig
- 10 core/themes/stable9/templates/content-edit/node-edit-form.html.twig
- 10 core/themes/stable/templates/content-edit/node-edit-form.html.twig
- 10 core/themes/bartik/templates/classy/content-edit/node-edit-form.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/node-edit-form.html.twig
Same filename and directory in other branches
Theme override for a node edit form.
Two column template for the node add/edit form.
This template will be used when a node edit form specifies 'node_edit_form' as its #theme callback. Otherwise, by default, node add/edit forms will be themed by form.html.twig.
Available variables:
- form: The node add/edit form.
See also
File
core/themes/starterkit_theme/templates/content-edit/node-edit-form.html.twigView source
- {#
- /**
- * @file
- * Theme override for a node edit form.
- *
- * Two column template for the node add/edit form.
- *
- * This template will be used when a node edit form specifies 'node_edit_form'
- * as its #theme callback. Otherwise, by default, node add/edit forms will be
- * themed by form.html.twig.
- *
- * Available variables:
- * - form: The node add/edit form.
- *
- * @see seven_form_node_form_alter()
- */
- #}
- <div class="layout-node-form clearfix">
- <div class="layout-region layout-region-node-main">
- {{ form|without('advanced', 'actions') }}
- </div>
- <div class="layout-region layout-region-node-secondary">
- {{ form.advanced }}
- </div>
- <div class="layout-region layout-region-node-footer">
- {{ form.actions }}
- </div>
- </div>