node-edit-form.html.twig

Same filename in this branch
  1. 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/node-edit-form.html.twig
  2. 8.9.x core/themes/seven/templates/node-edit-form.html.twig
  3. 8.9.x core/themes/bartik/templates/classy/content-edit/node-edit-form.html.twig
  4. 8.9.x core/themes/stable/templates/content-edit/node-edit-form.html.twig
  5. 8.9.x core/themes/classy/templates/content-edit/node-edit-form.html.twig
  6. 8.9.x core/modules/node/templates/node-edit-form.html.twig
Same filename in other branches
  1. 9 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/node-edit-form.html.twig
  2. 9 core/themes/stable9/templates/content-edit/node-edit-form.html.twig
  3. 9 core/themes/seven/templates/node-edit-form.html.twig
  4. 9 core/themes/claro/templates/node-edit-form.html.twig
  5. 9 core/themes/bartik/templates/classy/content-edit/node-edit-form.html.twig
  6. 9 core/themes/stable/templates/content-edit/node-edit-form.html.twig
  7. 9 core/themes/starterkit_theme/templates/content-edit/node-edit-form.html.twig
  8. 9 core/themes/classy/templates/content-edit/node-edit-form.html.twig
  9. 9 core/modules/node/templates/node-edit-form.html.twig
  10. 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/node-edit-form.html.twig
  11. 10 core/themes/stable9/templates/content-edit/node-edit-form.html.twig
  12. 10 core/themes/claro/templates/node-edit-form.html.twig
  13. 10 core/themes/starterkit_theme/templates/content-edit/node-edit-form.html.twig
  14. 10 core/modules/node/templates/node-edit-form.html.twig
  15. 11.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/node-edit-form.html.twig
  16. 11.x core/themes/stable9/templates/content-edit/node-edit-form.html.twig
  17. 11.x core/themes/claro/templates/node-edit-form.html.twig
  18. 11.x core/themes/starterkit_theme/templates/content-edit/node-edit-form.html.twig
  19. 11.x core/modules/node/templates/node-edit-form.html.twig

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

claro_form_node_form_alter()

File

core/themes/claro/templates/node-edit-form.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a node edit form.
  5. *
  6. * Two column template for the node add/edit form.
  7. *
  8. * This template will be used when a node edit form specifies 'node_edit_form'
  9. * as its #theme callback. Otherwise, by default, node add/edit forms will be
  10. * themed by form.html.twig.
  11. *
  12. * Available variables:
  13. * - form: The node add/edit form.
  14. *
  15. * @see claro_form_node_form_alter()
  16. */
  17. #}
  18. <div class="layout-node-form clearfix">
  19. <div class="layout-region layout-region-node-main">
  20. {{ form|without('advanced', 'footer', 'actions') }}
  21. </div>
  22. <div class="layout-region layout-region-node-secondary">
  23. {{ form.advanced }}
  24. </div>
  25. <div class="layout-region layout-region-node-footer">
  26. <div class="layout-region-node-footer__content">
  27. <div class="divider"></div>
  28. {{ form.footer }}
  29. {{ form.actions }}
  30. </div>
  31. </div>
  32. </div>

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.