tr.hbs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <tr id="tr-{{id}}" {{#if swap_oob}}hx-swap-oob="true"{{/if}}>
  2. <td class="original-url right-fade">
  3. <a href="{{target}}" target="_blank" rel="noopener noreferrer">
  4. {{target}}
  5. </a>
  6. {{#if description}}
  7. <p class="description">
  8. {{description}}
  9. </p>
  10. {{/if}}
  11. </td>
  12. <td class="created-at">
  13. {{relative_created_at}}
  14. {{#if relative_expire_in}}
  15. <p class="description">
  16. Expires in {{relative_expire_in}}
  17. </p>
  18. {{/if}}
  19. </td>
  20. <td class="short-link right-fade">
  21. <div class="clipboard small">
  22. <button
  23. aria-label="Copy"
  24. hx-on:click="handleShortURLCopyLink(this);"
  25. data-url="{{link.url}}"
  26. >
  27. {{> icons/copy}}
  28. </button>
  29. {{> icons/check}}
  30. </div>
  31. <a href="{{link.url}}" target="_blank" rel="noopener noreferrer">
  32. {{link.link}}
  33. </a>
  34. </td>
  35. <td class="views">
  36. {{visit_count}}
  37. </td>
  38. {{> links/actions}}
  39. </tr>
  40. <tr class="edit">
  41. <td class="loading">
  42. {{> icons/spinner}}
  43. </td>
  44. </tr>