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.
 
 
 
 
 

21 lines
1.0 KiB

<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<t t-inherit="web.Legacy.ControlPanel" t-inherit-mode="extension" owl="1">
<xpath expr="//div[hasclass('o_cp_top_left')]" position="after">
<button t-if="bookmarkOn" type="button" class="btn btn-bookmark fa fa-bookmark" t-on-click="onBookmark"/>
</xpath>
</t>
<t t-name="backend_theme_infinito.MenuBookmark" owl="1">
<div class="menu-bookmark" t-ref="menuBookmark">
<div class="menu-wrapper">
<span class="heading">Menus</span>
<t t-foreach="menuBookmark" t-as="menu" t-key="menu_index">
<a t-attf-href="/{{ menu.url }}" class="menu" t-att-data-index="menu_index">
<span class="small"><t t-esc="menu.short_name"/></span>
<span class="full" t-att-data-index="menu_index"><t t-esc="menu.name"/></span>
</a>
</t>
</div>
</div>
</t>
</templates>