Brand Promotion Message
web.brand_promotion_message
Replace
<t name="Brand Promotion Message" t-name="web.brand_promotion_message">
<t t-set="odoo_logo">
<a target="_blank" t-attf-href="http://www.odoo.com?utm_source=db&utm_medium=#{_utm_medium}" class="badge text-bg-light">
<img alt="Odoo" src="/web/static/img/odoo_logo_tiny.png" width="62" height="20" style="width: auto; height: 1em; vertical-align: baseline;"/>
</a>
</t>
<t t-set="final_message">Powered by %s%s</t>
<t t-out="final_message % (odoo_logo, _message and ('- ' + _message) or '')"/>
</t>
With
<t name="Brand Promotion Message" t-name="web.brand_promotion_message">
<t t-set="odoo_logo">
<a target="_blank" t-attf-href="http://www.toastysoftware.co.uk" class="badge text-bg-light">
<img alt="Odoo" src="/web/static/img/odoo_logo_tiny.png" width="62" height="20" style="width: auto; height: 1em; vertical-align: baseline;"/>
</a>
</t>
<t t-set="final_message">Powered by Toasty Software</t>
<t t-out="final_message"/>
</t>
2