際際滷

際際滷Share a Scribd company logo
How to create a theme
module in Odoo 17
Enterprise
Introduction
Enterprise
For Odoo website, there will be a theme set by default. In Odoo 17, this will
be done by odoo automatically once we install the website module from
the Apps list and just clicking on the Activate button.
Enterprise
Then click on the theme we need. This will lead us to the Editor view of the
website, where many snippets, styles, other themes and customization can
be chosen.
Enterprise
Odoo allows the developers to create their own new modules to apply
as a theme for the server. Lets check how it is done in Odoo 17.
Lets create a very simple module with essential views xml files and
static folder with css/ scss directory. Here, weve made a new module
named theme_custom.
Enterprise
For a Theme module, the manifest file can be like
{
'name': 'Custom Theme for Odoo',
'version': '17.0.1.0.0',
'category': 'Theme/sub_category',
'summary': 'customized for the web pages',
'description': 'This is a simple theme module which adds color changes and '
'styles for the web pages',
'installable': True,
'license': 'LGPL-3',
'application': True,
'sequence': 1,
'depends': ['website'],
'data': [
'views/theme_views.xml'
],
'assets': {
'web.assets_frontend': [
'/theme_custom/static/src/scss/style.scss'
],
},
}
Enterprise
Creating the Web page
For a web page to get created in the Odoo website, we have to define the xml files
inside the view directory. Inside that, first we have to give the code for creating a
menu in the web page. This is done by creating a record for website.menu model as
<record id="menu_home" model="website.menu">
<field name="name">Test</field>
<field name="url">/test</field>
<field name="page_id" ref="theme_custom.test_page"/>
<field name="parent_id" ref="website.main_menu"/>
<field name="sequence" type="int">10</field>
</record>
 name is the name of the website menu
 url specifies the URL of the webpage being created
 page_id refers to the xml id of the page which is to be loaded on the menu click
 parent_id website.main_menu must be kept to be shown under the main menu list
 sequence specifies the order of the menu
Enterprise
In the same file itself, we can add the code for creating the web page as
<record id="test_page" model="website.page">
<field name="name">Test page</field>
<field name="website_published">True</field>
<field name="url">/test</field>
<field name="type">qweb</field>
<field name="key">theme_custom.theme_views</field>
<field name="arch" type="xml">
<t t-name="theme_custom.test_page_template">
<t t-call="website.layout">
<div id="wrap">
<div class="container oe_structure">
<h1 class="test-heading"> TestPage </h1>
<ul class="test">
<li>Feature 1</li><li>Feature 2</li><li>Feature 3</li>
</ul>
</div>
</div>
</t></t>
</field>
</record>
Enterprise
After upgrading the module and refreshing the webpage, we can see
the new menu and page as
Enterprise
Now, to show that the theme is working, the styling of the test page is
incorporated using CSS or SCSS files. Add this inside static/scss directory as
.test-heading {
color: black;
}
.test {
background: bisque;
border-radius: 8px;
padding: 0.8em;
margin: 2em 0 3em;
li {
display: block;
position: relative;
padding: 2em;
color: #FFF;
text-align: center;
margin-bottom: 1em;
background-color: cadetblue;
font-size: 1.0em;
}
}
Enterprise
In this scss code, it just adds the black color for the tags with class test-
heading. For the contents with class test, some extra style details are
given. In the earlier xml file for the web page content, we have already
added the content with these classes. But, there we saw no change
affected. This is because, here Odoo 17 is running with the default
theme added during the website module installation.
To change the newly added theme, we have to switch to the custom
theme we added through code. For that, first make the website to Edit
mode by clicking on the marked Edit button on top.
Enterprise
Now, we can see the snippets and customization panel there on right side. Select
the third page THEME, and under the Website tag, click on Switch Theme button.
Enterprise
A confirmation bow will come then. Click on OK and after that, we can see our
custom theme will be visible there to select. Hover the mouse on it to see the
button Use this Theme. Click on it
Enterprise
Then, do nothing because we have to wait for some seconds for the theme to get
set by Odoo. By the time, the screen will be as
Enterprise
Now, we can see that the content of our webpage under the new Test menu will be
added with the CSS styles as
Enterprise
Adding snippets to theme module
In Odoo, snippets are reusable pieces of content that can be easily inserted
into web pages through the website builder. They are used to streamline the
process of creating and editing web pages by providing pre-designed
content blocks such as headers, footers, text blocks, image galleries, forms,
and more.
To create a simple snippet for our module, lets add the xml code for the
snippet template in the views/test_page.xml file.
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<template id="test_snippet" name="Test Snippet">
<section class="container oe_structure">
<h1 class="test-heading">Test Snippet</h1>
<ul class="test">
<li>Snippet Feature 1</li>
<li>Snippet Feature 2</li>
<li>Snippet Feature 3</li>
</ul>
</section>
</template>
</odoo>
Enterprise
Add the created snippet to the building blocks with xml code and save it in
the views/snippets/test_snippet.xml file.
<template id="test_snippet_register" inherit_id="website.snippets"
name="Test Snippet Register">
<xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]"
position="inside">
<t t-snippet="theme_custom.test_snippet"
t-thumbnail="/theme_custom/static/src/img/test_thumbnail.png"/>
</xpath>
</templates>
Enterprise
After upgrading the module, go to website and take the editors mode. Then, we
can see the Test snippet under the Structure section
Enterprise
We can just drag and drop to any page where we need as we do with the default
snippets in Odoo 17 website. Here, the snippet is dropped twice in our Test page
Enterprise
After completing these steps, your custom theme should be active
on your Odoo 17 website. We can further customize the theme by
adding more CSS, JavaScript, and adjusting the templates as needed.
This kind of custom themes creation allows the developers to get the
opportunity to tailor the website's appearance to specific
requirements. By following the outlined steps, users can install,
apply, and customize themes seamlessly within the Odoo
framework. The process involves organizing files, defining page
layouts, styling with CSS or SCSS, and incorporating custom snippets
for enhanced website functionality.
For More Info.
Check our company website for related blogs
and Odoo book.
Check our YouTube channel for
functional and technical videos in Odoo.
Enterprise
www.cybrosys.com

More Related Content

Similar to How to Create a Theme Module in Odoo 17 - Odoo 17 際際滷s (20)

Django tutorial
Django tutorialDjango tutorial
Django tutorial
Ksd Che
How to Create a Dynamic Snippet in Odoo 17
How to Create a Dynamic Snippet in Odoo 17How to Create a Dynamic Snippet in Odoo 17
How to Create a Dynamic Snippet in Odoo 17
Celine George
Creating a basic joomla
Creating a basic joomlaCreating a basic joomla
Creating a basic joomla
shailendra vishwakarma
crtical points for customizing Joomla templates
crtical points for customizing Joomla templatescrtical points for customizing Joomla templates
crtical points for customizing Joomla templates
amit das
Designing for magento
Designing for magentoDesigning for magento
Designing for magento
hainutemicute
Adding a view
Adding a viewAdding a view
Adding a view
Nhan Do
OpenCms Days 2013 - How to update smoothly to OpenCms 9ms 9
OpenCms Days 2013 - How to update smoothly to OpenCms 9ms 9OpenCms Days 2013 - How to update smoothly to OpenCms 9ms 9
OpenCms Days 2013 - How to update smoothly to OpenCms 9ms 9
Alkacon Software GmbH & Co. KG
How to perform product search based on a custom field from the PoS screen of ...
How to perform product search based on a custom field from the PoS screen of ...How to perform product search based on a custom field from the PoS screen of ...
How to perform product search based on a custom field from the PoS screen of ...
Celine George
mean stack
mean stackmean stack
mean stack
michaelaaron25322
Odoo - Create themes for website
Odoo - Create themes for websiteOdoo - Create themes for website
Odoo - Create themes for website
Odoo
Master page
Master pageMaster page
Master page
Paneliya Prince
06 laboratory exercise 1
06 laboratory exercise 106 laboratory exercise 1
06 laboratory exercise 1
Anne Lee
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to Django
Joaquim Rocha
Odoo 15 Composition of Module
Odoo 15 Composition of ModuleOdoo 15 Composition of Module
Odoo 15 Composition of Module
Celine George
STSADM Automating SharePoint Administration - Tech Ed South East Asia 2008 wi...
STSADM Automating SharePoint Administration - Tech Ed South East Asia 2008 wi...STSADM Automating SharePoint Administration - Tech Ed South East Asia 2008 wi...
STSADM Automating SharePoint Administration - Tech Ed South East Asia 2008 wi...
Joel Oleson
How to Add a Custom Button in Pos Odoo 17
How to Add a Custom Button in Pos Odoo 17How to Add a Custom Button in Pos Odoo 17
How to Add a Custom Button in Pos Odoo 17
Celine George
Customization of Odoo 17 Periodic Digest parameters from backend
Customization of Odoo 17 Periodic Digest parameters from backendCustomization of Odoo 17 Periodic Digest parameters from backend
Customization of Odoo 17 Periodic Digest parameters from backend
Celine George
Mageguru - magento custom module development
Mageguru -  magento custom module development Mageguru -  magento custom module development
Mageguru - magento custom module development
Mage Guru
Learn html and css from scratch
Learn html and css from scratchLearn html and css from scratch
Learn html and css from scratch
Mohd Manzoor Ahmed
SharePoint Re-branding The VisualStudio Way Part One SandBox Solution
SharePoint Re-branding The VisualStudio Way Part One SandBox SolutionSharePoint Re-branding The VisualStudio Way Part One SandBox Solution
SharePoint Re-branding The VisualStudio Way Part One SandBox Solution
Ifeanyi I Nwodo(De Jeneral)
Django tutorial
Django tutorialDjango tutorial
Django tutorial
Ksd Che
How to Create a Dynamic Snippet in Odoo 17
How to Create a Dynamic Snippet in Odoo 17How to Create a Dynamic Snippet in Odoo 17
How to Create a Dynamic Snippet in Odoo 17
Celine George
crtical points for customizing Joomla templates
crtical points for customizing Joomla templatescrtical points for customizing Joomla templates
crtical points for customizing Joomla templates
amit das
Designing for magento
Designing for magentoDesigning for magento
Designing for magento
hainutemicute
Adding a view
Adding a viewAdding a view
Adding a view
Nhan Do
OpenCms Days 2013 - How to update smoothly to OpenCms 9ms 9
OpenCms Days 2013 - How to update smoothly to OpenCms 9ms 9OpenCms Days 2013 - How to update smoothly to OpenCms 9ms 9
OpenCms Days 2013 - How to update smoothly to OpenCms 9ms 9
Alkacon Software GmbH & Co. KG
How to perform product search based on a custom field from the PoS screen of ...
How to perform product search based on a custom field from the PoS screen of ...How to perform product search based on a custom field from the PoS screen of ...
How to perform product search based on a custom field from the PoS screen of ...
Celine George
Odoo - Create themes for website
Odoo - Create themes for websiteOdoo - Create themes for website
Odoo - Create themes for website
Odoo
06 laboratory exercise 1
06 laboratory exercise 106 laboratory exercise 1
06 laboratory exercise 1
Anne Lee
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to Django
Joaquim Rocha
Odoo 15 Composition of Module
Odoo 15 Composition of ModuleOdoo 15 Composition of Module
Odoo 15 Composition of Module
Celine George
STSADM Automating SharePoint Administration - Tech Ed South East Asia 2008 wi...
STSADM Automating SharePoint Administration - Tech Ed South East Asia 2008 wi...STSADM Automating SharePoint Administration - Tech Ed South East Asia 2008 wi...
STSADM Automating SharePoint Administration - Tech Ed South East Asia 2008 wi...
Joel Oleson
How to Add a Custom Button in Pos Odoo 17
How to Add a Custom Button in Pos Odoo 17How to Add a Custom Button in Pos Odoo 17
How to Add a Custom Button in Pos Odoo 17
Celine George
Customization of Odoo 17 Periodic Digest parameters from backend
Customization of Odoo 17 Periodic Digest parameters from backendCustomization of Odoo 17 Periodic Digest parameters from backend
Customization of Odoo 17 Periodic Digest parameters from backend
Celine George
Mageguru - magento custom module development
Mageguru -  magento custom module development Mageguru -  magento custom module development
Mageguru - magento custom module development
Mage Guru
Learn html and css from scratch
Learn html and css from scratchLearn html and css from scratch
Learn html and css from scratch
Mohd Manzoor Ahmed
SharePoint Re-branding The VisualStudio Way Part One SandBox Solution
SharePoint Re-branding The VisualStudio Way Part One SandBox SolutionSharePoint Re-branding The VisualStudio Way Part One SandBox Solution
SharePoint Re-branding The VisualStudio Way Part One SandBox Solution
Ifeanyi I Nwodo(De Jeneral)

More from Celine George (20)

Analysis of Conf File Parameters in Odoo 17
Analysis of Conf File Parameters in Odoo 17Analysis of Conf File Parameters in Odoo 17
Analysis of Conf File Parameters in Odoo 17
Celine George
How to Manage Check Out Process in Odoo 17 Website
How to Manage Check Out Process in Odoo 17 WebsiteHow to Manage Check Out Process in Odoo 17 Website
How to Manage Check Out Process in Odoo 17 Website
Celine George
Managing Online Signature and Payment with Odoo 17
Managing Online Signature and Payment with Odoo 17Managing Online Signature and Payment with Odoo 17
Managing Online Signature and Payment with Odoo 17
Celine George
Recruitment in the Odoo 17 - Odoo 17 際際滷s
Recruitment in the Odoo 17 - Odoo 17 際際滷sRecruitment in the Odoo 17 - Odoo 17 際際滷s
Recruitment in the Odoo 17 - Odoo 17 際際滷s
Celine George
How to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting AppHow to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting App
Celine George
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷sHow to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
Celine George
How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18
Celine George
How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18
Celine George
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesHow to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
Celine George
Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17
Celine George
List View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷sList View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷s
Celine George
How to Set Default Terms and Conditions in Odoo 17 Accounting
How to Set Default Terms and Conditions in Odoo 17 AccountingHow to Set Default Terms and Conditions in Odoo 17 Accounting
How to Set Default Terms and Conditions in Odoo 17 Accounting
Celine George
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo SalesEnhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Celine George
What are the Views in Odoo 18 Purchase - Odoo 際際滷s
What are the Views in Odoo 18 Purchase - Odoo 際際滷sWhat are the Views in Odoo 18 Purchase - Odoo 際際滷s
What are the Views in Odoo 18 Purchase - Odoo 際際滷s
Celine George
Configuration of Python and SQL Constraints in Odoo 18
Configuration of Python and SQL Constraints in Odoo 18Configuration of Python and SQL Constraints in Odoo 18
Configuration of Python and SQL Constraints in Odoo 18
Celine George
How to Add Custom Fields to Configuration Settings in Odoo 18
How to Add Custom Fields to  Configuration Settings in Odoo 18How to Add Custom Fields to  Configuration Settings in Odoo 18
How to Add Custom Fields to Configuration Settings in Odoo 18
Celine George
How to Manage Abandoned Cart in Odoo 17 Website
How to Manage Abandoned Cart in Odoo 17 WebsiteHow to Manage Abandoned Cart in Odoo 17 Website
How to Manage Abandoned Cart in Odoo 17 Website
Celine George
How to Add opening Balance in Odoo Accounting
How to Add opening Balance in Odoo AccountingHow to Add opening Balance in Odoo Accounting
How to Add opening Balance in Odoo Accounting
Celine George
How to Manage Your Company Budget Using Odoo 17 Accounting
How to Manage Your Company Budget Using Odoo 17 AccountingHow to Manage Your Company Budget Using Odoo 17 Accounting
How to Manage Your Company Budget Using Odoo 17 Accounting
Celine George
How to Simplify Reconciliation Process using Reconciliation Models using odoo...
How to Simplify Reconciliation Process using Reconciliation Models using odoo...How to Simplify Reconciliation Process using Reconciliation Models using odoo...
How to Simplify Reconciliation Process using Reconciliation Models using odoo...
Celine George
Analysis of Conf File Parameters in Odoo 17
Analysis of Conf File Parameters in Odoo 17Analysis of Conf File Parameters in Odoo 17
Analysis of Conf File Parameters in Odoo 17
Celine George
How to Manage Check Out Process in Odoo 17 Website
How to Manage Check Out Process in Odoo 17 WebsiteHow to Manage Check Out Process in Odoo 17 Website
How to Manage Check Out Process in Odoo 17 Website
Celine George
Managing Online Signature and Payment with Odoo 17
Managing Online Signature and Payment with Odoo 17Managing Online Signature and Payment with Odoo 17
Managing Online Signature and Payment with Odoo 17
Celine George
Recruitment in the Odoo 17 - Odoo 17 際際滷s
Recruitment in the Odoo 17 - Odoo 17 際際滷sRecruitment in the Odoo 17 - Odoo 17 際際滷s
Recruitment in the Odoo 17 - Odoo 17 際際滷s
Celine George
How to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting AppHow to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting App
Celine George
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷sHow to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
Celine George
How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18
Celine George
How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18
Celine George
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesHow to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
Celine George
Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17
Celine George
List View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷sList View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷s
Celine George
How to Set Default Terms and Conditions in Odoo 17 Accounting
How to Set Default Terms and Conditions in Odoo 17 AccountingHow to Set Default Terms and Conditions in Odoo 17 Accounting
How to Set Default Terms and Conditions in Odoo 17 Accounting
Celine George
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo SalesEnhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Celine George
What are the Views in Odoo 18 Purchase - Odoo 際際滷s
What are the Views in Odoo 18 Purchase - Odoo 際際滷sWhat are the Views in Odoo 18 Purchase - Odoo 際際滷s
What are the Views in Odoo 18 Purchase - Odoo 際際滷s
Celine George
Configuration of Python and SQL Constraints in Odoo 18
Configuration of Python and SQL Constraints in Odoo 18Configuration of Python and SQL Constraints in Odoo 18
Configuration of Python and SQL Constraints in Odoo 18
Celine George
How to Add Custom Fields to Configuration Settings in Odoo 18
How to Add Custom Fields to  Configuration Settings in Odoo 18How to Add Custom Fields to  Configuration Settings in Odoo 18
How to Add Custom Fields to Configuration Settings in Odoo 18
Celine George
How to Manage Abandoned Cart in Odoo 17 Website
How to Manage Abandoned Cart in Odoo 17 WebsiteHow to Manage Abandoned Cart in Odoo 17 Website
How to Manage Abandoned Cart in Odoo 17 Website
Celine George
How to Add opening Balance in Odoo Accounting
How to Add opening Balance in Odoo AccountingHow to Add opening Balance in Odoo Accounting
How to Add opening Balance in Odoo Accounting
Celine George
How to Manage Your Company Budget Using Odoo 17 Accounting
How to Manage Your Company Budget Using Odoo 17 AccountingHow to Manage Your Company Budget Using Odoo 17 Accounting
How to Manage Your Company Budget Using Odoo 17 Accounting
Celine George
How to Simplify Reconciliation Process using Reconciliation Models using odoo...
How to Simplify Reconciliation Process using Reconciliation Models using odoo...How to Simplify Reconciliation Process using Reconciliation Models using odoo...
How to Simplify Reconciliation Process using Reconciliation Models using odoo...
Celine George

Recently uploaded (20)

3. AI Trust Layer, Governance Explainability, Security & Compliance.pdf
3. AI Trust Layer, Governance  Explainability, Security & Compliance.pdf3. AI Trust Layer, Governance  Explainability, Security & Compliance.pdf
3. AI Trust Layer, Governance Explainability, Security & Compliance.pdf
Mukesh Kala
Introduction to Systematic Reviews - Prof Ejaz Khan
Introduction to Systematic Reviews - Prof Ejaz KhanIntroduction to Systematic Reviews - Prof Ejaz Khan
Introduction to Systematic Reviews - Prof Ejaz Khan
Systematic Reviews Network (SRN)
DUODENUM ANATOMY & Clinical Anatomy.pptx
DUODENUM ANATOMY & Clinical Anatomy.pptxDUODENUM ANATOMY & Clinical Anatomy.pptx
DUODENUM ANATOMY & Clinical Anatomy.pptx
Sid Roy
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VIAnti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Samruddhi Khonde
U.S. Department of Education certification
U.S. Department of Education certificationU.S. Department of Education certification
U.S. Department of Education certification
Mebane Rash
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdfWeek 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Liz Walsh-Trevino
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdf
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdfBerry_Kanisha_BAS_PB1_202503 (2) (2).pdf
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdf
KanishaBerry
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptxUrinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Ashish Umale
ANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri DabhadeANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
MIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel HolznerMIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel Holzner
MIPLM
Gold Spot Dairy Store Jordan Minnesota 55352
Gold Spot Dairy Store Jordan Minnesota 55352Gold Spot Dairy Store Jordan Minnesota 55352
Gold Spot Dairy Store Jordan Minnesota 55352
Forklift Trucks in Minnesota
EDL 290F Week 4 - Group Ride (2025).pdf
EDL 290F Week 4  - Group Ride (2025).pdfEDL 290F Week 4  - Group Ride (2025).pdf
EDL 290F Week 4 - Group Ride (2025).pdf
Liz Walsh-Trevino
Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
 Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ... Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
coreylewis960
MIPLM subject matter expert Dr Robert Klinski
MIPLM subject matter expert Dr Robert KlinskiMIPLM subject matter expert Dr Robert Klinski
MIPLM subject matter expert Dr Robert Klinski
MIPLM
Unit1 Inroduction to Internal Combustion Engines
Unit1  Inroduction to Internal Combustion EnginesUnit1  Inroduction to Internal Combustion Engines
Unit1 Inroduction to Internal Combustion Engines
NileshKumbhar21
The basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptxThe basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptx
heathfieldcps1
MIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha KamhuberMIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha Kamhuber
MIPLM
The basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxThe basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptx
heathfieldcps1
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study MaterialPass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Jenny408767
Yale VMOC Special Report - Measles Outbreak Southwest US 3-30-2025 FINAL v2...
Yale VMOC Special Report - Measles Outbreak  Southwest US 3-30-2025  FINAL v2...Yale VMOC Special Report - Measles Outbreak  Southwest US 3-30-2025  FINAL v2...
Yale VMOC Special Report - Measles Outbreak Southwest US 3-30-2025 FINAL v2...
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
3. AI Trust Layer, Governance Explainability, Security & Compliance.pdf
3. AI Trust Layer, Governance  Explainability, Security & Compliance.pdf3. AI Trust Layer, Governance  Explainability, Security & Compliance.pdf
3. AI Trust Layer, Governance Explainability, Security & Compliance.pdf
Mukesh Kala
DUODENUM ANATOMY & Clinical Anatomy.pptx
DUODENUM ANATOMY & Clinical Anatomy.pptxDUODENUM ANATOMY & Clinical Anatomy.pptx
DUODENUM ANATOMY & Clinical Anatomy.pptx
Sid Roy
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VIAnti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Samruddhi Khonde
U.S. Department of Education certification
U.S. Department of Education certificationU.S. Department of Education certification
U.S. Department of Education certification
Mebane Rash
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdfWeek 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Liz Walsh-Trevino
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdf
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdfBerry_Kanisha_BAS_PB1_202503 (2) (2).pdf
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdf
KanishaBerry
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptxUrinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Ashish Umale
ANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri DabhadeANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
MIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel HolznerMIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel Holzner
MIPLM
EDL 290F Week 4 - Group Ride (2025).pdf
EDL 290F Week 4  - Group Ride (2025).pdfEDL 290F Week 4  - Group Ride (2025).pdf
EDL 290F Week 4 - Group Ride (2025).pdf
Liz Walsh-Trevino
Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
 Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ... Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
coreylewis960
MIPLM subject matter expert Dr Robert Klinski
MIPLM subject matter expert Dr Robert KlinskiMIPLM subject matter expert Dr Robert Klinski
MIPLM subject matter expert Dr Robert Klinski
MIPLM
Unit1 Inroduction to Internal Combustion Engines
Unit1  Inroduction to Internal Combustion EnginesUnit1  Inroduction to Internal Combustion Engines
Unit1 Inroduction to Internal Combustion Engines
NileshKumbhar21
The basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptxThe basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptx
heathfieldcps1
MIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha KamhuberMIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha Kamhuber
MIPLM
The basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxThe basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptx
heathfieldcps1
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study MaterialPass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Jenny408767

How to Create a Theme Module in Odoo 17 - Odoo 17 際際滷s

  • 1. How to create a theme module in Odoo 17 Enterprise
  • 2. Introduction Enterprise For Odoo website, there will be a theme set by default. In Odoo 17, this will be done by odoo automatically once we install the website module from the Apps list and just clicking on the Activate button.
  • 3. Enterprise Then click on the theme we need. This will lead us to the Editor view of the website, where many snippets, styles, other themes and customization can be chosen.
  • 4. Enterprise Odoo allows the developers to create their own new modules to apply as a theme for the server. Lets check how it is done in Odoo 17. Lets create a very simple module with essential views xml files and static folder with css/ scss directory. Here, weve made a new module named theme_custom.
  • 5. Enterprise For a Theme module, the manifest file can be like { 'name': 'Custom Theme for Odoo', 'version': '17.0.1.0.0', 'category': 'Theme/sub_category', 'summary': 'customized for the web pages', 'description': 'This is a simple theme module which adds color changes and ' 'styles for the web pages', 'installable': True, 'license': 'LGPL-3', 'application': True, 'sequence': 1, 'depends': ['website'], 'data': [ 'views/theme_views.xml' ], 'assets': { 'web.assets_frontend': [ '/theme_custom/static/src/scss/style.scss' ], }, }
  • 6. Enterprise Creating the Web page For a web page to get created in the Odoo website, we have to define the xml files inside the view directory. Inside that, first we have to give the code for creating a menu in the web page. This is done by creating a record for website.menu model as <record id="menu_home" model="website.menu"> <field name="name">Test</field> <field name="url">/test</field> <field name="page_id" ref="theme_custom.test_page"/> <field name="parent_id" ref="website.main_menu"/> <field name="sequence" type="int">10</field> </record> name is the name of the website menu url specifies the URL of the webpage being created page_id refers to the xml id of the page which is to be loaded on the menu click parent_id website.main_menu must be kept to be shown under the main menu list sequence specifies the order of the menu
  • 7. Enterprise In the same file itself, we can add the code for creating the web page as <record id="test_page" model="website.page"> <field name="name">Test page</field> <field name="website_published">True</field> <field name="url">/test</field> <field name="type">qweb</field> <field name="key">theme_custom.theme_views</field> <field name="arch" type="xml"> <t t-name="theme_custom.test_page_template"> <t t-call="website.layout"> <div id="wrap"> <div class="container oe_structure"> <h1 class="test-heading"> TestPage </h1> <ul class="test"> <li>Feature 1</li><li>Feature 2</li><li>Feature 3</li> </ul> </div> </div> </t></t> </field> </record>
  • 8. Enterprise After upgrading the module and refreshing the webpage, we can see the new menu and page as
  • 9. Enterprise Now, to show that the theme is working, the styling of the test page is incorporated using CSS or SCSS files. Add this inside static/scss directory as .test-heading { color: black; } .test { background: bisque; border-radius: 8px; padding: 0.8em; margin: 2em 0 3em; li { display: block; position: relative; padding: 2em; color: #FFF; text-align: center; margin-bottom: 1em; background-color: cadetblue; font-size: 1.0em; } }
  • 10. Enterprise In this scss code, it just adds the black color for the tags with class test- heading. For the contents with class test, some extra style details are given. In the earlier xml file for the web page content, we have already added the content with these classes. But, there we saw no change affected. This is because, here Odoo 17 is running with the default theme added during the website module installation. To change the newly added theme, we have to switch to the custom theme we added through code. For that, first make the website to Edit mode by clicking on the marked Edit button on top.
  • 11. Enterprise Now, we can see the snippets and customization panel there on right side. Select the third page THEME, and under the Website tag, click on Switch Theme button.
  • 12. Enterprise A confirmation bow will come then. Click on OK and after that, we can see our custom theme will be visible there to select. Hover the mouse on it to see the button Use this Theme. Click on it
  • 13. Enterprise Then, do nothing because we have to wait for some seconds for the theme to get set by Odoo. By the time, the screen will be as
  • 14. Enterprise Now, we can see that the content of our webpage under the new Test menu will be added with the CSS styles as
  • 15. Enterprise Adding snippets to theme module In Odoo, snippets are reusable pieces of content that can be easily inserted into web pages through the website builder. They are used to streamline the process of creating and editing web pages by providing pre-designed content blocks such as headers, footers, text blocks, image galleries, forms, and more. To create a simple snippet for our module, lets add the xml code for the snippet template in the views/test_page.xml file. <?xml version="1.0" encoding="UTF-8" ?> <odoo> <template id="test_snippet" name="Test Snippet"> <section class="container oe_structure"> <h1 class="test-heading">Test Snippet</h1> <ul class="test"> <li>Snippet Feature 1</li> <li>Snippet Feature 2</li> <li>Snippet Feature 3</li> </ul> </section> </template> </odoo>
  • 16. Enterprise Add the created snippet to the building blocks with xml code and save it in the views/snippets/test_snippet.xml file. <template id="test_snippet_register" inherit_id="website.snippets" name="Test Snippet Register"> <xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]" position="inside"> <t t-snippet="theme_custom.test_snippet" t-thumbnail="/theme_custom/static/src/img/test_thumbnail.png"/> </xpath> </templates>
  • 17. Enterprise After upgrading the module, go to website and take the editors mode. Then, we can see the Test snippet under the Structure section
  • 18. Enterprise We can just drag and drop to any page where we need as we do with the default snippets in Odoo 17 website. Here, the snippet is dropped twice in our Test page
  • 19. Enterprise After completing these steps, your custom theme should be active on your Odoo 17 website. We can further customize the theme by adding more CSS, JavaScript, and adjusting the templates as needed. This kind of custom themes creation allows the developers to get the opportunity to tailor the website's appearance to specific requirements. By following the outlined steps, users can install, apply, and customize themes seamlessly within the Odoo framework. The process involves organizing files, defining page layouts, styling with CSS or SCSS, and incorporating custom snippets for enhanced website functionality.
  • 20. For More Info. Check our company website for related blogs and Odoo book. Check our YouTube channel for functional and technical videos in Odoo. Enterprise www.cybrosys.com