diff options
Diffstat (limited to 'code_backend_theme/views')
| -rw-r--r-- | code_backend_theme/views/icons.xml | 10 | ||||
| -rw-r--r-- | code_backend_theme/views/layout.xml | 8 |
2 files changed, 18 insertions, 0 deletions
diff --git a/code_backend_theme/views/icons.xml b/code_backend_theme/views/icons.xml new file mode 100644 index 0000000..62d0265 --- /dev/null +++ b/code_backend_theme/views/icons.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + <menuitem id="base.menu_administration" name="Settings" + web_icon="code_backend_theme,static/src/img/icons/settings.png"/> + <menuitem id="base.menu_management" name="Apps" web_icon="code_backend_theme,static/src/img/icons/apps.png"/> + <menuitem id="mail.menu_root_discuss" name="Discuss" + web_icon="code_backend_theme,static/src/img/icons/discuss.png"/> + </data> +</odoo>
\ No newline at end of file diff --git a/code_backend_theme/views/layout.xml b/code_backend_theme/views/layout.xml new file mode 100644 index 0000000..2592f50 --- /dev/null +++ b/code_backend_theme/views/layout.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" ?> +<odoo> + <template id="code_custom_layout" inherit_id="web.layout" name="Custom Layout"> + <xpath expr="//meta[@content='IE=edge,chrome=1']" position="after"> + <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/> + </xpath> + </template> +</odoo>
\ No newline at end of file |
