You are here

commerce-pricelist-form.html.twig in Commerce Pricelist 8.2

Template for the price list add/edit form.

Available variables:

  • form: The form.

File

templates/commerce-pricelist-form.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Template for the price list add/edit form.
  5. *
  6. * Available variables:
  7. * - form: The form.
  8. *
  9. * @ingroup themeable
  10. */
  11. #}
  12. <div class="layout-pricelist-form clearfix">
  13. <div class="layout-region layout-region-pricelist-main">
  14. {{ form|without('advanced', 'actions') }}
  15. </div>
  16. <div class="layout-region layout-region-pricelist-secondary">
  17. {{ form.advanced }}
  18. </div>
  19. <div class="layout-region layout-region-pricelist-footer">
  20. {{ form.actions }}
  21. </div>
  22. </div>