You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.0KB

  1. {% extends '@LcShop/backend/default/show.html.twig' %}
  2. {% import '@LcShop/backend/default/block/macros.html.twig' as macros %}
  3. {% block main %}
  4. <div class="lc-vue-js-container" id="lc-order-edit">
  5. <div class="row">
  6. {% include '@LcShop/backend/order/form.html.twig' %}
  7. {{ macros.startCard(3, 'OrderShop.addProduct', 'success') }}
  8. {% include '@LcShop/backend/order/card_addproducttoorder.html.twig' %}
  9. {% include '@LcShop/backend/order/modal_invoiceaddress.html.twig' %}
  10. {% include '@LcShop/backend/order/modal_deliveryaddress.html.twig' %}
  11. {% include '@LcShop/backend/order/modal_deliveryavailability.html.twig' %}
  12. {{ macros.endCard }}
  13. </div>
  14. </div>
  15. {% endblock %}
  16. {% block script_javascript %}
  17. {{ parent() }}
  18. {% include '@LcShop/backend/default/block/script-vuejs.html.twig' %}
  19. <script src="{{ asset('bundles/lcshop/js/backend/script/order/vuejs-order.js') }}"></script>
  20. {% endblock %}