gestion des demandes d'évolution pour le centre kalachakra non géré dans les module booking et opendons
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.
 
 
 
 

24 lines
1.0 KiB

<odoo>
<!-- suppression des devis et bon de commandes -->
<template id="portal_my_home" name="portal_my_home" inherit_id="portal.portal_my_home" customize_show="True" priority="30">
<xpath expr="//t[1][@t-call='portal.portal_docs_entry']" position="replace">
</xpath>
<xpath expr="//t[1][@t-call='portal.portal_docs_entry']" position="replace">
</xpath>
</template>
<template id="portal_kala_user_dropdown" name="kala user dropdown" inherit_id="portal.user_dropdown">
<xpath expr="//span[@t-if='_user_name']" position="replace">
<t t-if="user_id.partner_id.firstname">
<span t-attf-class="#{_user_name_class}" t-esc="user_id.partner_id.firstname"/>
</t>
<t t-if="not user_id.partner_id.firstname">
<span t-if="_user_name" t-attf-class="#{_user_name_class}" t-esc="user_id.name[:23] + '...' if user_id.name and len(user_id.name) &gt; 25 else user_id.name"/>
</t>
</xpath>
</template>
</odoo>