table.hbs 645 B

1234567891011121314151617181920212223242526
  1. <section id="main-table-wrapper">
  2. <h2>Recent shortened links.</h2>
  3. <table
  4. hx-get="/api/links"
  5. hx-target="tbody"
  6. hx-swap="outerHTML"
  7. hx-select="tbody"
  8. hx-disinherit="*"
  9. hx-include=".links-controls"
  10. hx-params="not total"
  11. hx-sync="this:replace"
  12. hx-select-oob="#total"
  13. hx-trigger="
  14. load once,
  15. reloadMainTable from:body,
  16. click delay:100ms from:button.nav,
  17. input changed delay:500ms from:[name='search'],
  18. "
  19. hx-on:htmx:after-on-load="updateLinksNav()"
  20. >
  21. {{> links/thead}}
  22. {{> links/tbody}}
  23. {{> links/tfoot}}
  24. </table>
  25. {{> links/dialog/frame}}
  26. </section>