I have installed OpenERP (Odoo) on a system, I want to remove the links for
- Login with OpenERP
- Manage Databases
- Powered by OpenERP
That appear on the login page of OpenERP. I am using OpenERP Odoo v8 Saas-4.
Below is process for removing these links.
"Login with OpenERP"
Removing "Manage Databases" and "Powered by OpenERP"
<!--
<a class="oe_login_manage_db" t-attf-href="/web/database/manager{{ '?debug' if debug else '' }}">Manage Databases</a>
<span class="oe_footer_seperator"> | </span>
</t>
<a href="http://www.openerp.com" target="_blank">Powered by <span>OpenERP</span></a>
-->
You have to create a new module with a view to inherit from web.login_layout template from web/views/webclient_templates.xml. More details in this question from Odoo Q&A:
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<t t-extend="Login">
<t t-jquery="div.oe_login_footer" t-operation="replace">
<a href="http://www.openerp.com" target="_blank">Powered by <span>OpenERP</span></a>
</t>
</t>
</templates>
This code is saved in your own module in static>src>xml> in base.xml file.
declare in manifest file openerp.py