thead.hbs 793 B

123456789101112131415161718192021222324
  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. {{#if @root.isAdmin}}
  9. <label id="all" class="checkbox">
  10. <input name="all" type="checkbox" />
  11. All links
  12. </label>
  13. {{/if}}
  14. </th>
  15. {{> links/nav}}
  16. </tr>
  17. <tr>
  18. <th class="original-url">Original URL</th>
  19. <th class="created-at">Created at</th>
  20. <th class="short-link">Short link</th>
  21. <th class="views">Views</th>
  22. <th class="actions"></th>
  23. </tr>
  24. </thead>