mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
28 lines
946 B
XML
28 lines
946 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!--
|
|
Copyright 2021 ITerra - Sergey Shebanin
|
|
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
|
-->
|
|
<templates id="template" xml:space="preserve">
|
|
<t t-inherit="web.NavBar.SectionsMenu" t-inherit-mode="extension" owl="1">
|
|
<xpath
|
|
expr="//t[@t-foreach='sections']//t[@t-set='hotkey']"
|
|
position="attributes"
|
|
>
|
|
<attribute
|
|
name="t-value"
|
|
t-translation="off"
|
|
>'shift+' + ((section_index + 1) % 10).toString()</attribute>
|
|
</xpath>
|
|
<xpath
|
|
expr="//t[@t-if='currentAppSectionsExtra.length']//t[@t-set='hotkey']"
|
|
position="attributes"
|
|
>
|
|
<attribute
|
|
name="t-value"
|
|
t-translation="off"
|
|
>'shift+' + (sectionsVisibleCount + 1 % 10).toString()</attribute>
|
|
</xpath>
|
|
</t>
|
|
</templates>
|