i was wondering how to change page titles and remove Odoo from it?
https://www.odoo.com/forum/help-1/question/change-login-page-title-34874 I tried this but i found
In Odoo 10, the above solutions does not work. For Odoo 10 we need to edit below JS file
addons/web/static/src/js/abstract_web_client.js
Change this code:
this.set('title_part', {"zopenerp": "Odoo"});
With this one:
this.set('title_part', {"zopenerp": "MyPageTitle"});
After this, you restart your Odoo server to see the changes.