Files
web/web_easy_switch_company/static/src/xml/switch_company.xml
2014-03-10 21:13:54 +01:00

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>