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.
22 lines
1.2 KiB
22 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inherited template of website layout to add Skype chat icon-->
|
|
<template id="website_home_page" inherit_id="website.footer_custom">
|
|
<xpath expr="//div[hasclass('s_social_media')]" position="inside">
|
|
<div>
|
|
<t t-set="skype_check_box"
|
|
t-value="request.env['ir.config_parameter'].sudo().get_param('website_skype_integration.skype_check_box')"/>
|
|
<t t-set="skype_id"
|
|
t-value="request.env['ir.config_parameter'].sudo().get_param('website_skype_integration.skype_id')"/>
|
|
<t t-if="skype_check_box == 'True'">
|
|
<div style="display: inline-flex; align-items: center; width: 45px; height: 45px; border-radius: 50%; border: 2px solid white; padding-left: 7px; background-color: white;">
|
|
<a t-att-href="'skype:' + skype_id + '?chat'">
|
|
<i class="fa fa-skype"
|
|
style="color: #00aff0; font-size: 23px;"/>
|
|
</a>
|
|
</div>
|
|
</t>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|