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.
29 lines
1.3 KiB
29 lines
1.3 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<templates>
|
|
<!--
|
|
Template for the Studio Systray widget in the backend theme.
|
|
It provides options to open either the Simple Editor or the Advanced Editor.
|
|
-->
|
|
<t t-name="backend_theme_infinito.StudioSystray" owl="1">
|
|
<div class="dropdown o-brush-infinito">
|
|
<a href="#" class="-no-caret" t-on-click.prevent="_onClickAdvancedEditor">
|
|
<i class="fa fa-paint-brush" role="img" aria-label="Open Studio"/>
|
|
</a>
|
|
<div id="dropdown_infinito_mode" class="dropdown-menu">
|
|
<a class="dropdown-item" href="#" t-on-click.prevent="_onClickSimpleEditor">Simple Editor</a>
|
|
<a class="dropdown-item" href="#" t-on-click.prevent="_onClickAdvancedEditor">Advanced Editor</a>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
<!--
|
|
Template for the Advanced Systray widget in the backend theme.
|
|
It provides an option to open advanced features.
|
|
-->
|
|
<t t-name="backend_theme_infinito.AdvSystray" owl="1">
|
|
<div class="dropdown o-settings-infinito">
|
|
<a href="#" class="-no-caret" t-on-click.prevent="_onClick">
|
|
<i class="fa fa-gear" role="img" aria-label="Open Advanced Features"/>
|
|
</a>
|
|
</div>
|
|
</t>
|
|
</templates>
|