Files
web/web_easy_switch_company/static/src/xml/switch_company.xml
Sylvain LE GAL 0fe62818be [REF] pep8;
[REF] change copyright header in each file;
[REF] typos in __openerp__.py file;
2014-04-02 11:17:53 +02:00

46 lines
2.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- ********************************************************************** -->
<!-- -->
<!--Web Easy Switch Company module for OpenERP -->
<!--Copyright (C) 2014 GRAP (http://www.grap.coop) -->
<!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) -->
<!--This program is free software: you can redistribute it and/or modify -->
<!--it under the terms of the GNU Affero General Public License as -->
<!--published by the Free Software Foundation, either version 3 of the -->
<!--License, or (at your option) any later version. -->
<!-- -->
<!--This program is distributed in the hope that it will be useful, -->
<!--but WITHOUT ANY WARRANTY; without even the implied warranty of -->
<!--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
<!--GNU Affero General Public License for more details. -->
<!-- -->
<!--You should have received a copy of the GNU Affero General Public License-->
<!--along with this program. If not, see <http://www.gnu.org/licenses/>. -->
<!-- ********************************************************************** -->
<template>
<t t-name="web_easy_switch_company.SwitchCompanyWidget">
<span class="oe_user_menu oe_topbar_item oe_dropdown_toggle oe_dropdown_arrow">
<span>
<t t-esc="widget.current_company_name"/>
</span>
<ul class="oe_dropdown_menu">
<t t-foreach="widget.companies" t-as="company">
<li>
<a class="easy_switch_company_company_item"
href="#"
t-att-data-company-id="company.id">
<img class="oe_topbar_avatar" t-att-src="company.logo_topbar"/>
<img class="oe_topbar_avatar" t-att-src="company.logo_state"/>
<t t-esc="company.name"/>
</a>
</li>
</t>
</ul>
</span>
</t>
</template>