You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

38 lines
1.4 KiB

<?xml version="1.0" encoding="UTF-8"?>
<!--to show the button in pos -->
<templates id="template" xml:space="preserve">
<t t-name="LangButton" owl="1">
<div class="control-button">
<span class="multi-uom-span" aria-label="Info" title="Info">
Change Language
</span>
</div>
</t>
<!--popup that show the activated languages-->
<t t-name="LangWidget" owl="1">
<div class="modal-dialog">
<div class="popup">
<p class="title">Select Language</p>
<div>
<select class="lang" style="width:35%;height:30px;border-radius:5px;">
<t t-foreach='lang_list || []' t-as='lang' t-key="lang.id">
<option t-att-value='lang.id'
t-att-selected="((lang.code == current_lang) ? true:undefined)" >
<t t-esc='lang.name'/>
</option>
</t>
</select>
</div>
<div class="footer">
<div class="button confirm" t-on-click="click_confirm">
Ok
</div>
<div class="button cancel" t-on-click="click_cancel">
Cancel
</div>
</div>
</div>
</div>
</t>
</templates>