thead.hbs 662 B

123456789101112131415161718
  1. <thead>
  2. <tr class="controls links-controls">
  3. <th class="search">
  4. <input class="table-input search" id="search" name="search" type="text" placeholder="Search..." hx-on:keyup="resetTableNav()" />
  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. </th>
  9. {{> links/nav}}
  10. </tr>
  11. <tr>
  12. <th class="original-url">Original URL</th>
  13. <th class="created-at">Created at</th>
  14. <th class="short-link">Short link</th>
  15. <th class="views">Views</th>
  16. <th class="actions"></th>
  17. </tr>
  18. </thead>