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.
27 lines
1.1 KiB
27 lines
1.1 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!-- Adding button for loading chatgpt in systray -->
|
|
<templates xml:space="preserve">
|
|
<t t-name="systray_icon" owl="1">
|
|
<div style="display: none;">
|
|
<Wysiwyg t-props="wysiwygProps"/>
|
|
</div>
|
|
<div class="new_icon">
|
|
<div class="icon_div">
|
|
<div class="toggle-icon" role="button">
|
|
<t t-if="this.odoo_version === 'Enterprise'">
|
|
<i id='chatgpt_btn' t-on-click="_onClick"
|
|
class="fa fa-magic fa-1.5x"
|
|
style="color:black; margin-bottom:10px; padding:6px;"
|
|
role="img" aria-label="ChatGPT"/>
|
|
</t>
|
|
<t t-else="">
|
|
<i id='chatgpt_btn' t-on-click="_onClick"
|
|
class="fa fa-magic fa-1.5x"
|
|
style="color:white; margin-bottom:10px; padding:14px;"
|
|
role="img" aria-label="ChatGPT"/>
|
|
</t>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</templates>
|
|
|