You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.8 KiB

10 years ago
10 years ago
10 years ago
10 years ago
  1. {{template "base/head" .}}
  2. {{template "base/navbar" .}}
  3. <div id="body" class="container" data-page="admin">
  4. {{template "admin/nav" .}}
  5. <div id="admin-container" class="col-md-10">
  6. <div class="panel panel-default">
  7. <div class="panel-heading">
  8. User Management
  9. </div>
  10. <div class="panel-body">
  11. <a href="/admin/users/new" class="btn btn-primary">New Account</a>
  12. <table class="table table-striped">
  13. <thead>
  14. <tr>
  15. <th>Id</th>
  16. <th>Name</th>
  17. <th>E-mail</th>
  18. <th>Actived</th>
  19. <th>Admin</th>
  20. <th>Repos</th>
  21. <th>Join</th>
  22. <th>Edit</th>
  23. </tr>
  24. </thead>
  25. <tbody>
  26. {{range .Users}}
  27. <tr>
  28. <td>{{.Id}}</td>
  29. <td><a href="/user/{{.Name}}">{{.Name}}</a></td>
  30. <td>{{.Email}}</td>
  31. <td><i class="fa fa{{if .IsActive}}-check{{end}}-square-o"></i></td>
  32. <td><i class="fa fa{{if .IsAdmin}}-check{{end}}-square-o"></i></td>
  33. <td>{{.NumRepos}}</td>
  34. <td>{{DateFormat .Created "M d, Y"}}</td>
  35. <td><a href="/admin/users/{{.Id}}"><i class="fa fa-pencil-square-o"></i></a></td>
  36. </tr>
  37. {{end}}
  38. </tbody>
  39. </table>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. {{template "base/footer" .}}