table.hbs 1022 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <table id="domains-table" hx-swap-oob="true">
  2. <thead>
  3. <tr>
  4. <th class="domain">Domain</th>
  5. <th class="homepage">Homepage</th>
  6. <th class="actions"></th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. {{#if domains}}
  11. {{#each domains}}
  12. <tr>
  13. <td class="domain">
  14. {{address}}
  15. </td>
  16. <td class="homepage">
  17. {{homepage}}
  18. </td>
  19. <td class="actions">
  20. <button
  21. type="button"
  22. class="action delete"
  23. hx-on:click='openDialog("domain-dialog")'
  24. hx-get="/confirm-domain-delete"
  25. hx-target="#domain-dialog .content-wrapper"
  26. hx-indicator="#domain-dialog"
  27. hx-vals='{"id":"{{id}}"}'
  28. >
  29. {{> icons/trash}}
  30. </button>
  31. </td>
  32. </tr>
  33. {{/each}}
  34. {{else}}
  35. <tr>
  36. <td class="no-entry">
  37. No domains yet.
  38. </td>
  39. </tr>
  40. {{/if}}
  41. </tbody>
  42. </table>