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.
16 lines
656 B
16 lines
656 B
<odoo>
|
|
<!-- Website sale cart template inherited and add the clear cart button-->
|
|
<template id="clear_cart_views" inherit_id="website_sale.cart"
|
|
name="Clear Cart Button">
|
|
<xpath expr="//a[@href='/shop']" position="after">
|
|
<t t-if="website_sale_order and
|
|
website_sale_order.website_order_line">
|
|
<a href="/shop/remove_items" id="clear_cart_button"
|
|
class="btn btn-secondary mb32 d-none d-xl-inline-block">
|
|
<span class="fa fa-trash-o"/>
|
|
Clear Cart
|
|
</a>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|