mirror of https://github.com/OCA/web.git
22 lines
653 B
XML
22 lines
653 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!-- Copyright 2022 Tecnativa - Alexandre Díaz
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
|
<template>
|
|
<t t-name="web_refresher.Button" owl="1">
|
|
<nav
|
|
class="oe_refresher"
|
|
aria-label="Refresher"
|
|
aria-atomic="true"
|
|
t-if="displayButton"
|
|
>
|
|
<button
|
|
class="fa fa-refresh btn btn-icon oe_pager_refresh"
|
|
aria-label="Refresh"
|
|
t-on-click="onClickRefresh"
|
|
title="Refresh"
|
|
tabindex="-1"
|
|
/>
|
|
</nav>
|
|
</t>
|
|
</template>
|