[IMP] web_refresher: Work as element of control panel

This commit is contained in:
Alexandre D. Díaz
2022-06-30 12:37:46 +02:00
committed by Pedro M. Baeza
parent f6ea53a081
commit 4bacdb09d2
8 changed files with 154 additions and 19 deletions

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Copyright 2022 Tecnativa - Alexandre Díaz
License AGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). -->
<template>
<t t-name="web_refresher.Button">
<span aria-atomic="true">
<button
class="fa fa-refresh btn btn-icon oe_pager_refresh"
aria-label="Refresh"
title="Refresh"
tabindex="-1"
/>
</span>
</t>
<t t-extend="ControlPanel">
<t t-jquery=".o_control_panel nav.o_cp_pager" t-operation="before">
<nav class="oe_cp_refresher" />
</t>
</t>
<t t-extend="X2ManyControlPanel">
<t t-jquery=".o_x2m_control_panel nav.o_cp_pager" t-operation="before">
<nav class="oe_cp_refresher" />
</t>
</t>
</template>