[IMP] theme_*: adapt s_form_aside snippet across themes

*: artists, nano, notes, vehicle

This commit adapt the occurrences of the `s_form_aside` snippet across
themes.

task-4135499
part of task-4077427

closes odoo/design-themes#1007

Related: odoo/odoo#184094
Signed-off-by: Ivan Klapka (ivkl) <ivkl@odoo.com>
This commit is contained in:
Chrysanthe (chgo)
2024-11-06 15:33:13 +01:00
parent 3cc5d6b655
commit a1e425d1b6
7 changed files with 44 additions and 0 deletions
+1
View File
@@ -106,6 +106,7 @@
'views/snippets/s_website_form_cover.xml',
'views/snippets/s_numbers_boxed.xml',
'views/snippets/s_split_intro.xml',
'views/snippets/s_form_aside.xml',
'views/new_page_template.xml',
],
'images': [
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_form_aside" inherit_id="website.s_form_aside">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc o_cc5" separator=" "/>
</xpath>
</template>
</odoo>
+1
View File
@@ -55,6 +55,7 @@
'views/snippets/s_numbers_boxed.xml',
'views/snippets/s_company_team_card.xml',
'views/snippets/s_split_intro.xml',
'views/snippets/s_form_aside.xml',
'views/new_page_template.xml',
],
'images': [
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_form_aside" inherit_id="website.s_form_aside">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc o_cc5" separator=" "/>
</xpath>
</template>
</odoo>
+1
View File
@@ -69,6 +69,7 @@
'views/snippets/s_website_form_cover.xml',
'views/snippets/s_numbers_boxed.xml',
'views/snippets/s_split_intro.xml',
'views/snippets/s_form_aside.xml',
'views/new_page_template.xml',
],
'images': [
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_form_aside" inherit_id="website.s_form_aside">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc o_cc3" separator=" "/>
</xpath>
</template>
</odoo>
+8
View File
@@ -967,4 +967,12 @@
</xpath>
</template>
<!-- ======== FORM ASIDE ======== -->
<template id="s_form_aside" inherit_id="website.s_form_aside">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc o_cc5" separator=" "/>
</xpath>
</template>
</odoo>