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.
20 lines
924 B
20 lines
924 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<!-- Inherited the website cart page for adding the clear cart button-->
|
|
<template id="clear_cart_views" inherit_id="website_sale.navigation_buttons"
|
|
name="Clear Cart Button">
|
|
<xpath expr="//div[contains(@t-attf-class, 'pt-4')]" position="after">
|
|
<t t-if="website_sale_order and
|
|
website_sale_order.website_order_line">
|
|
<div style="display: flex; align-items: center; justify-content: center; margin-top: 10px">
|
|
<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></div>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
</data>
|
|
</odoo>
|
|
|