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.

24 lines
654 B

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <template>
  3. <t
  4. t-name="web_refresher.Pager"
  5. t-inherit="web.Pager"
  6. t-inherit-mode="extension"
  7. owl="1"
  8. >
  9. <xpath expr="//span[hasclass('o_pager_counter')]" position="before">
  10. <button
  11. t-if="props.withAccessKey and !env.isSmall"
  12. type="button"
  13. class="fa fa-refresh btn btn-secondary rounded me-1"
  14. aria-label="Refresh"
  15. title="Refresh"
  16. data-hotkey="r"
  17. tabindex="-1"
  18. t-on-click.stop="() => this.navigate(0)"
  19. />
  20. </xpath>
  21. </t>
  22. </template>