thead.hbs 743 B

12345678910111213141516171819202122
  1. <thead>
  2. <tr class="links-controls">
  3. <th class="search">
  4. <input id="search" name="search" type="text" placeholder="Search..." hx-on:keyup="resetLinkNav()" />
  5. <input id="total" name="total" type="hidden" value="{{total}}" />
  6. <input id="limit" name="limit" type="hidden" value="10" />
  7. <input id="skip" name="skip" type="hidden" value="0" />
  8. <label id="all" class="checkbox">
  9. <input name="all" type="checkbox" />
  10. All links
  11. </label>
  12. </th>
  13. {{> links/nav}}
  14. </tr>
  15. <tr>
  16. <th class="original-url">Original URL</th>
  17. <th class="created-at">Created at</th>
  18. <th class="short-link">Short link</th>
  19. <th class="views">Views</th>
  20. <th class="actions"></th>
  21. </tr>
  22. </thead>