mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- *********************************************************************** -->
|
|
<!-- See __openerp__.py file for Copyright and Licence Informations. -->
|
|
<!-- *********************************************************************** -->
|
|
<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>
|
|
|