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.
39 lines
1.9 KiB
39 lines
1.9 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<template xml:space="preserve">
|
|
<!-- Template for creating systray icon -->
|
|
<t t-name="ChatGptSystray" owl="1">
|
|
<div class="new_icon">
|
|
<div class="toggle-icon" role="button" t-on-click="_chat_gpt">
|
|
<img id="create_chat"
|
|
src="odoo_chat_gpt/static/description/assets/icons/chatgpt.png"
|
|
style="color: white; margin-bottom:10px; padding:13px;
|
|
width:40px; height:40px"
|
|
role="img" aria-label="Purchase Order"/>
|
|
</div>
|
|
<body class="menu" t-ref="body">
|
|
<button type="button" id="close"
|
|
class="bg-transparent ms-auto border-0"
|
|
t-on-click="_close">
|
|
<img src="odoo_chat_gpt/static/description/assets/icons/close.png"
|
|
class="img img-fluid"
|
|
style="max-width: 20px; height: auto; margin-left: 471px;"/>
|
|
</button>
|
|
<br/>
|
|
<br/>
|
|
<div class="chat" t-ref="Chat" style="font-weight: bold;"/>
|
|
<div class="content" style="height: 45vh;overflow-y: auto;">
|
|
<div class="answer" t-ref="Answer"
|
|
style="display: flex; background: #f0f0f0; padding: 10px; border-radius: 5px; word-wrap: break-word;"/>
|
|
</div>
|
|
<div class="input-container">
|
|
<input type="text" class="question" t-ref="Question"
|
|
placeholder="Send a message"/>
|
|
<button class="button" t-on-click="_send_message">
|
|
<span>SEND</span>
|
|
<i class="fa fa-paper-plane fa-lg replace"/>
|
|
</button>
|
|
</div>
|
|
</body>
|
|
</div>
|
|
</t>
|
|
</template>
|
|
|