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.
18 lines
858 B
18 lines
858 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- This XML template extends the frontend portal by adding a link to the user's wallet page in the user dropdown menu. -->
|
|
<template id="portal_inherit_website_customer_wallet"
|
|
name="Link to frontend portal"
|
|
inherit_id="portal.user_dropdown">
|
|
<xpath expr="//*[@id='o_logout_divider']" position="before">
|
|
<t t-set="customer_wallet"
|
|
t-value="request.env['ir.config_parameter'].sudo().get_param('website_customer_wallet.customer_wallet')"/>
|
|
<t t-if="customer_wallet">
|
|
<a href="/my/wallet" role="menuitem" class="dropdown-item">
|
|
<i class=" fa fa-fw fa-credit-card me-1 small text-muted"/>
|
|
Wallet
|
|
</a>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|