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.
45 lines
2.2 KiB
45 lines
2.2 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<!-- template for chatGPT in website-->
|
|
<template id="connector">
|
|
<t t-call="website.layout">
|
|
<div id="snippetContent">
|
|
<div class="container" id="main_layout">
|
|
<section class="content">
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
<div class="grid support-content">
|
|
<div class="grid-body">
|
|
<h2>Drop Your Questions</h2>
|
|
<input type="text"
|
|
id="question_input"
|
|
class="form-control o_website_form_input"
|
|
name="question"/>
|
|
<br/>
|
|
<button type="button"
|
|
class="btn btn-success"
|
|
data-toggle="modal">Generate
|
|
Response
|
|
</button>
|
|
<br/>
|
|
<textarea id="result_area"
|
|
class="list-group fa-padding"
|
|
name="answer" rows='1'
|
|
contenteditable="false"/>
|
|
<div class="btn-group">
|
|
<button type="button"
|
|
class="btn btn-default"
|
|
id="copy_content">
|
|
copy
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</template>
|
|
</odoo>
|
|
|