From 5051a4a68a802c988c683bb9b7574e5896eb5b96 Mon Sep 17 00:00:00 2001 From: "Xavier Luyckx (xlu)" Date: Mon, 2 Sep 2024 17:14:46 +0200 Subject: [PATCH] [IMP] theme_*: adapt themes with new `s_company_team_grid` snippet *: anelusia, artists, beauty, bewise, bistro, bookstore, clean, cobalt, kea, kiddo, monglia, nano, notes, orchid, real_estate, treehouse, vehicle, yes This commit adapts the design of new `s_company_team_grid` snippet for multiple themes. task-4150614 closes odoo/design-themes#901 Part-of: task-4077427 Related: odoo/odoo#179791 Signed-off-by: Christopher du Toit (chto) --- theme_anelusia/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 77 +++++++++++++++++++ theme_artists/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 35 +++++++++ theme_avantgarde/views/customizations.xml | 74 ++++++++++++++++++ theme_beauty/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 35 +++++++++ theme_bewise/views/customizations.xml | 7 ++ theme_bistro/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 27 +++++++ theme_bookstore/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 35 +++++++++ theme_clean/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 35 +++++++++ theme_cobalt/views/customizations.xml | 8 ++ theme_kea/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 73 ++++++++++++++++++ theme_kiddo/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 73 ++++++++++++++++++ theme_monglia/views/customizations.xml | 24 ++++++ theme_nano/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 38 +++++++++ .../views/snippets/s_company_team_grid.xml | 11 +++ theme_real_estate/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 35 +++++++++ theme_treehouse/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 11 +++ theme_yes/__manifest__.py | 1 + .../views/snippets/s_company_team_grid.xml | 11 +++ 29 files changed, 621 insertions(+) create mode 100644 theme_anelusia/views/snippets/s_company_team_grid.xml create mode 100644 theme_artists/views/snippets/s_company_team_grid.xml create mode 100644 theme_beauty/views/snippets/s_company_team_grid.xml create mode 100644 theme_bistro/views/snippets/s_company_team_grid.xml create mode 100644 theme_bookstore/views/snippets/s_company_team_grid.xml create mode 100644 theme_clean/views/snippets/s_company_team_grid.xml create mode 100644 theme_kea/views/snippets/s_company_team_grid.xml create mode 100644 theme_kiddo/views/snippets/s_company_team_grid.xml create mode 100644 theme_nano/views/snippets/s_company_team_grid.xml create mode 100644 theme_notes/views/snippets/s_company_team_grid.xml create mode 100644 theme_real_estate/views/snippets/s_company_team_grid.xml create mode 100644 theme_treehouse/views/snippets/s_company_team_grid.xml create mode 100644 theme_yes/views/snippets/s_company_team_grid.xml diff --git a/theme_anelusia/__manifest__.py b/theme_anelusia/__manifest__.py index 011d67193..955fc757e 100644 --- a/theme_anelusia/__manifest__.py +++ b/theme_anelusia/__manifest__.py @@ -28,6 +28,7 @@ 'views/snippets/s_color_blocks_2.xml', 'views/snippets/s_company_team_shapes.xml', 'views/snippets/s_sidegrid.xml', + 'views/snippets/s_company_team_grid.xml', 'views/snippets/s_references.xml', 'views/snippets/s_references_social.xml', 'views/snippets/s_references_grid.xml', diff --git a/theme_anelusia/views/snippets/s_company_team_grid.xml b/theme_anelusia/views/snippets/s_company_team_grid.xml new file mode 100644 index 000000000..322f34f7f --- /dev/null +++ b/theme_anelusia/views/snippets/s_company_team_grid.xml @@ -0,0 +1,77 @@ + + + + + + diff --git a/theme_artists/__manifest__.py b/theme_artists/__manifest__.py index 62f75dd05..7a8b2f12b 100644 --- a/theme_artists/__manifest__.py +++ b/theme_artists/__manifest__.py @@ -65,6 +65,7 @@ 'views/snippets/s_company_team_spotlight.xml', 'views/snippets/s_product_list.xml', 'views/snippets/s_color_blocks_2.xml', + 'views/snippets/s_company_team_grid.xml', 'views/snippets/s_company_team_shapes.xml', 'views/snippets/s_numbers_showcase.xml', 'views/snippets/s_mockup_image.xml', diff --git a/theme_artists/views/snippets/s_company_team_grid.xml b/theme_artists/views/snippets/s_company_team_grid.xml new file mode 100644 index 000000000..cf6595052 --- /dev/null +++ b/theme_artists/views/snippets/s_company_team_grid.xml @@ -0,0 +1,35 @@ + + + + + + diff --git a/theme_avantgarde/views/customizations.xml b/theme_avantgarde/views/customizations.xml index 5da3fb26d..fd178602d 100644 --- a/theme_avantgarde/views/customizations.xml +++ b/theme_avantgarde/views/customizations.xml @@ -809,4 +809,78 @@ + + + diff --git a/theme_beauty/__manifest__.py b/theme_beauty/__manifest__.py index 6c7849284..33250f658 100644 --- a/theme_beauty/__manifest__.py +++ b/theme_beauty/__manifest__.py @@ -36,6 +36,7 @@ 'views/snippets/s_color_blocks_2.xml', 'views/snippets/s_company_team_shapes.xml', 'views/snippets/s_company_team_detail.xml', + 'views/snippets/s_company_team_grid.xml', 'views/snippets/s_media_list.xml', 'views/snippets/s_comparisons.xml', 'views/snippets/s_comparisons_horizontal.xml', diff --git a/theme_beauty/views/snippets/s_company_team_grid.xml b/theme_beauty/views/snippets/s_company_team_grid.xml new file mode 100644 index 000000000..9fa524b06 --- /dev/null +++ b/theme_beauty/views/snippets/s_company_team_grid.xml @@ -0,0 +1,35 @@ + + + + + + diff --git a/theme_bewise/views/customizations.xml b/theme_bewise/views/customizations.xml index 8abad1d17..8a4dd78bd 100644 --- a/theme_bewise/views/customizations.xml +++ b/theme_bewise/views/customizations.xml @@ -629,6 +629,13 @@ + + + + + diff --git a/theme_kea/__manifest__.py b/theme_kea/__manifest__.py index ff33d0ee5..65dd849ee 100644 --- a/theme_kea/__manifest__.py +++ b/theme_kea/__manifest__.py @@ -27,6 +27,7 @@ 'views/snippets/s_references_social.xml', 'views/snippets/s_references_grid.xml', 'views/snippets/s_motto.xml', + 'views/snippets/s_company_team_grid.xml', 'views/snippets/s_color_blocks_2.xml', 'views/snippets/s_features_wall.xml', 'views/snippets/s_picture.xml', diff --git a/theme_kea/views/snippets/s_company_team_grid.xml b/theme_kea/views/snippets/s_company_team_grid.xml new file mode 100644 index 000000000..a207c94c4 --- /dev/null +++ b/theme_kea/views/snippets/s_company_team_grid.xml @@ -0,0 +1,73 @@ + + + + + + diff --git a/theme_kiddo/__manifest__.py b/theme_kiddo/__manifest__.py index ac90538ee..54e90e288 100644 --- a/theme_kiddo/__manifest__.py +++ b/theme_kiddo/__manifest__.py @@ -55,6 +55,7 @@ 'views/snippets/s_images_constellation.xml', 'views/snippets/s_text_cover.xml', 'views/snippets/s_empowerment.xml', + 'views/snippets/s_company_team_grid.xml', 'views/new_page_template.xml', ], 'images': [ diff --git a/theme_kiddo/views/snippets/s_company_team_grid.xml b/theme_kiddo/views/snippets/s_company_team_grid.xml new file mode 100644 index 000000000..7a845a14f --- /dev/null +++ b/theme_kiddo/views/snippets/s_company_team_grid.xml @@ -0,0 +1,73 @@ + + + + + + diff --git a/theme_monglia/views/customizations.xml b/theme_monglia/views/customizations.xml index eac8a9b2b..2e5068592 100644 --- a/theme_monglia/views/customizations.xml +++ b/theme_monglia/views/customizations.xml @@ -614,6 +614,30 @@ + + +