mirror of https://github.com/OCA/web.git
40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!-- Copyright 2024 Tecnativa - Carlos Roca
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
|
<template>
|
|
<t
|
|
t-name="web_refresher.ControlPanel.Regular"
|
|
t-inherit="web.ControlPanel.Regular"
|
|
t-inherit-mode="extension"
|
|
owl="1"
|
|
>
|
|
<xpath expr="//div[hasclass('o_cp_bottom_right')]" position="after">
|
|
<div
|
|
t-if="!display['bottom-right']"
|
|
class="o_cp_bottom_right oe_cp_refresher"
|
|
role="search"
|
|
t-ref="refresher"
|
|
>
|
|
<Refresher />
|
|
</div>
|
|
</xpath>
|
|
</t>
|
|
<t
|
|
t-name="web_refresher.ControlPanel.Small"
|
|
t-inherit="web.ControlPanel.Small"
|
|
t-inherit-mode="extension"
|
|
owl="1"
|
|
>
|
|
<xpath expr="//div[hasclass('o_cp_pager')]" position="after">
|
|
<div
|
|
t-if="!display['bottom-right']"
|
|
class="o_cp_bottom_right oe_cp_refresher"
|
|
role="search"
|
|
t-ref="refresher"
|
|
>
|
|
<Refresher />
|
|
</div>
|
|
</xpath>
|
|
</t>
|
|
</template>
|