Connor McCutcheon
/ SkyCode
admin-files.html
html
{{range .Files}}
<tr>
  <td class="text-xs font-mono" title="{{.OwnerID}}">{{.OwnerIDShort}}</td>
  <td>{{.Path}}</td>
  <td><span class="badge badge-sm">{{.Language}}</span></td>
  <td>{{.Size}}</td>
  <td class="text-xs">{{.CreatedAt}}</td>
  <td>
    <button class="btn btn-ghost btn-xs text-error"
            hx-delete="/admin/files/{{.ID}}"
            hx-confirm="Delete file '{{.Path}}'?"
            hx-target="#files-table"
            hx-swap="innerHTML">Delete</button>
  </td>
</tr>
{{else}}
<tr><td colspan="6" class="text-center text-base-content/50">No files found</td></tr>
{{end}}
No comments yet.