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.
21 lines
973 B
21 lines
973 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<template id="generated_snippets" inherit_id="website.snippets" priority="8">
|
|
<xpath expr="//snippets[@id='snippet_groups']" position="inside">
|
|
<t snippet-group="ai_generated"
|
|
t-snippet="website.s_snippet_group"
|
|
string="AI Generated"
|
|
t-thumbnail="/website/static/src/img/snippets_thumbs/s_card.svg"/>
|
|
</xpath>
|
|
<xpath expr="//snippets[@id='snippet_structure']" position="inside">
|
|
<t t-foreach="request.env['website.snippet.data'].sudo().search([('is_ai_generated', '=', True)], order='create_date desc')"
|
|
t-as="snippet">
|
|
<t t-snippet="generative_ai.s_snippet_group_with_ai_content"
|
|
string="AI Snippet"
|
|
group="ai_generated">
|
|
<t t-set="snippet" t-value="snippet"/>
|
|
</t>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|