Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/developer/howtos/website_themes/media.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ use `<t t-call="website.placeholder_header_brand">`.
.. code-block:: xml
:caption: ``/website_airproof/data/images.xml``

<record id="website.default_website" model="website">
<record id="base.default_website" model="website">
<field name="logo" type="base64" file="website_airproof/static/src/img/content/logo.png" />
</record>

Expand Down
4 changes: 2 additions & 2 deletions content/developer/howtos/website_themes/theming.rst
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ structure below.

<?xml version="1.0" encoding="utf-8"?>
<odoo noupdate="1">
<record id="website.default_website" model="website">
<record id="base.default_website" model="website">
<field name="name">Airproof</field>
<field name="logo" type="bytes" file="website_airproof/static/src/img/content/logo_airproof.png"/>
<field name="favicon" type="bytes" file="website_airproof/static/description/favicon.png" />
Expand Down Expand Up @@ -766,7 +766,7 @@ structure below.

.. note::

`website.default_website` is the default reference whenever you work with only one website. If
`base.default_website` is the default reference whenever you work with only one website. If
there are several websites in your database, this record will refer to the default site (the
first one).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ The client has requested the following changes:
.. code-block:: xml
:caption: ``/website_airproof/data/website.xml``

<record id="website.default_website" model="website">
<record id="base.default_website" model="website">
<field name="name">Airproof</field>
<field name="logo" type="bytes" file="website_airproof/static/src/img/content/branding/airproof-logo.svg"/>
<field name="favicon" type="bytes" file="website_airproof/static/description/airproof-favicon.png" />
Expand Down