35 lines
1.5 KiB
XML
35 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
|
|
<!-- 修改页面头部图标及文字 -->
|
|
<template id="favicon_icon" inherit_id="web.layout" name="Web layout">
|
|
<!-- change the title with reliance partner -->
|
|
<!-- <xpath expr="//head//title" position="before">
|
|
<title t-esc="'JIKIMO'"/>
|
|
</xpath> -->
|
|
<!-- change the default favicon icon with -->
|
|
<xpath expr="//head//link[@rel='shortcut icon']" position="replace">
|
|
<link type="image/x-icon" rel="shortcut icon" href="/jikimo_frontend/static/src/img/jikimo-logo.ico"/>
|
|
</xpath>
|
|
</template>
|
|
|
|
<!-- hide 登录页面 powerd by odoo 及管理数据库 -->
|
|
<template id="login_page_layout" inherit_id="web.login_layout" name="Login Page Layout">
|
|
<!-- <xpath expr="//div[@class='card-body']/div[last()]" position="replace"></xpath> -->
|
|
</template>
|
|
|
|
<!-- 隐藏odoo版本信息 -->
|
|
<record id="jikimo_res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">jikimo.res.config.settings.view.form.inherit.base.setup</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="base_setup.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@id='about']" position="replace">
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
</data>
|
|
</odoo> |