list.tmpl 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {{template "base/head" .}}
  2. <div class="admin user">
  3. <div class="ui container">
  4. <div class="ui grid">
  5. {{template "admin/navbar" .}}
  6. <div class="twelve wide column content">
  7. {{template "base/alert" .}}
  8. <h4 class="ui top attached header">
  9. User Manage Panel (Total: {{.Total}}) 👦
  10. <div class="ui right">
  11. <a class="ui black tiny button" href="{{AppSubURL}}/admin/users/new">Create New Account</a>
  12. </div>
  13. </h4>
  14. <div class="ui attached segment">
  15. {{template "admin/base/search" .}}
  16. </div>
  17. <div class="ui unstackable attached table segment">
  18. <table class="ui unstackable very basic striped table">
  19. <thead>
  20. <tr>
  21. <th>ID</th>
  22. <th>Name</th>
  23. <th>Email</th>
  24. <th>Repos</th>
  25. <th>Created</th>
  26. <th>Edit</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. {{range .Users}}
  31. <tr>
  32. <td>{{.ID}}</td>
  33. <td>
  34. <a class="ui image label {{if .Suspended}}red{{end}}" href="{{AppSubURL}}/{{.Name}}">
  35. <img src="{{AppendAvatarSize .RelAvatarLink 40}}"> {{.Name}}
  36. </a>
  37. <br/>
  38. {{if .IsVerified}}<i class="admin-badge verified octicon octicon-verified"></i>{{end}}
  39. {{if .IsMaker}}<i class="admin-badge maker octicon octicon-paintcan"></i>{{end}}
  40. {{if .Twitch}}<i class="admin-badge streamer octicon octicon-broadcast"></i>{{end}}
  41. {{if .IsBugHunter}}<i class="admin-badge bughunter octicon octicon-gist-secret"></i>{{end}}
  42. {{if .IsBeta}}<i class="admin-badge developer octicon octicon-circuit-board"></i>{{end}}
  43. {{if .IsStaff}}<i class="admin-badge isstaff octicon octicon-tools"></i>{{end}}
  44. {{if .GitoteDeveloper}}<i class="admin-badge gitotedeveloper octicon octicon-jersey"></i>{{end}}
  45. </td>
  46. <td><span class="text truncate email">{{.Email}}</span></td>
  47. <td>{{.NumRepos}}</td>
  48. <td><span title="{{DateFmtLong .Created}}">{{DateFmtShort .Created }}</span></td>
  49. <td><a href="{{$.Link}}/{{.ID}}">🖊</a></td>
  50. </tr>
  51. {{end}}
  52. </tbody>
  53. </table>
  54. </div>
  55. {{template "admin/base/page" .}}
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. {{template "base/footer" .}}