21 lines
989 B
XML
21 lines
989 B
XML
<odoo>
|
|
<template id="custom_favicon_backend" inherit_id="web.layout" name="Custom Favicon & Manifest">
|
|
<xpath expr="//head" position="inside">
|
|
<link rel="shortcut icon" href="/plugin_recre/static/img/favicon.ico" type="image/x-icon"/>
|
|
<link rel="icon" href="/plugin_recre/static/img/favicon.ico" type="image/x-icon"/>
|
|
|
|
<link rel="manifest" href="/plugin_recre/static/manifest.json?v=2"/>
|
|
<meta name="theme-color" content="#714B67"/>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="remove_odoo_footer_login" inherit_id="web.login_layout" name="Remove Odoo Footer">
|
|
<xpath expr="//div[a[contains(@href, 'odoo.com')]]" position="replace">
|
|
<div class="text-center pb-3 border-top pt-3 mt-3">
|
|
<span style="font-size: 0.85em; color: #6c757d;">
|
|
Criado por Creidsu. Clei-Server
|
|
</span>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
</odoo> |