admin.html 1.3 KB

12345678910111213141516171819202122232425262728
  1. {{ define "admin" }}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <div class="container-fluid row">
  5. {{ range $key, $value := .Tables }}
  6. <div class="col">
  7. <div class="col container h-2 p-2" style="background-color: rgb(22, 22, 22); color: white; height: fit-content; font-size: larger; font-family: monospace;">{{ $key }}
  8. </div>
  9. <table class="table table-dark table-hover">
  10. <thead>
  11. </thead>
  12. <tbody>
  13. {{ range $value }}
  14. <tr>
  15. <div class="container">
  16. <div class="row">
  17. <button class="btn-primary" hx-get="{{ .Link }}" hx-swap="outerHTML" scope="row" style="color: white; height: fit-content; font-size: larger; font-family: monospace;">{{ .DisplayName }}</button>
  18. </div>
  19. </div>
  20. </tr>
  21. {{ end }}
  22. </tbody>
  23. </table>
  24. </div>
  25. {{ end }}
  26. </div>
  27. </html>
  28. {{ end }}