Initial commit: Core packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:45 +02:00
commit 12c29a983b
9512 changed files with 8379910 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="web.neutralize_banner" name="Neutralize Banner" inherit_id="web.layout" active="False">
<xpath expr="//body" position="inside">
<div>
<span id="oe_neutralize_banner" t-attf-style="
text-align: center;
color: #FFFFFF;
background-color: #D0442C;
position: relative;
display: block;
font-size: 16px;
{{ neutralize_banner_style or '' }}">
<t t-out="neutralize_banner_text">This database is neutralized.</t>
</span>
</div>
</xpath>
<xpath expr="//head">
<meta name="robots" content="noindex, nofollow" />
</xpath>
</template>
</odoo>