mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
46 lines
2.4 KiB
XML
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>
|
|
|