list.tmpl 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. Organization Manage Panel (Total: {{ .Total}}) 🏢
  10. </h4>
  11. <div class="ui attached segment">
  12. {{template "admin/base/search" .}}
  13. </div>
  14. <div class="ui unstackable attached table segment">
  15. <table class="ui unstackable very basic striped table">
  16. <thead>
  17. <tr>
  18. <th>ID</th>
  19. <th>Name</th>
  20. <th>Teams</th>
  21. <th>Members</th>
  22. <th>Repos</th>
  23. <th>Created</th>
  24. <th>Edit</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. {{range .Users}}
  29. <tr>
  30. <td>{{.ID}}</td>
  31. <td>
  32. <a class="ui image label" href="{{.HomeLink}}">
  33. <img src="{{AppendAvatarSize .RelAvatarLink 40}}"> {{.Name}}
  34. </a>
  35. </td>
  36. <td>{{.NumTeams}}</td>
  37. <td>{{.NumMembers}}</td>
  38. <td>{{.NumRepos}}</td>
  39. <td><span title="{{DateFmtLong .Created}}">{{DateFmtShort .Created}}</span></td>
  40. <td><a href="{{AppSubURL}}/org/{{.Name}}/settings">🖊</i></a></td>
  41. </tr>
  42. {{end}}
  43. </tbody>
  44. </table>
  45. </div>
  46. {{template "admin/base/page" .}}
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. {{template "base/footer" .}}