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

list.tmpl 2.3 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {{template "base/head" .}}
  2. <div class="admin user">
  3. {{template "admin/navbar" .}}
  4. <div class="ui container">
  5. {{template "base/alert" .}}
  6. <h4 class="ui top attached header">
  7. {{.i18n.Tr "admin.repos.repo_manage_panel"}} ({{.i18n.Tr "admin.total" .Total}})
  8. </h4>
  9. <div class="ui attached segment">
  10. {{template "admin/repo/search" .}}
  11. </div>
  12. <div class="ui attached table segment">
  13. <table class="ui very basic striped table">
  14. <thead>
  15. <tr>
  16. <th>ID</th>
  17. <th>{{.i18n.Tr "admin.repos.owner"}}</th>
  18. <th>{{.i18n.Tr "admin.repos.name"}}</th>
  19. <th>{{.i18n.Tr "admin.repos.private"}}</th>
  20. <th>{{.i18n.Tr "admin.repos.watches"}}</th>
  21. <th>{{.i18n.Tr "admin.repos.stars"}}</th>
  22. <th>{{.i18n.Tr "admin.repos.forks"}}</th>
  23. <th>{{.i18n.Tr "admin.repos.issues"}}</th>
  24. <th>{{.i18n.Tr "admin.repos.size"}}</th>
  25. <th>{{.i18n.Tr "admin.users.created"}}</th>
  26. <th>{{.i18n.Tr "admin.notices.op"}}</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. {{range .Repos}}
  31. <tr>
  32. <td>{{.ID}}</td>
  33. <td><a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a></td>
  34. <td><a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a></td>
  35. <td><i class="fa fa{{if .IsPrivate}}-check{{end}}-square-o"></i></td>
  36. <td>{{.NumWatches}}</td>
  37. <td>{{.NumStars}}</td>
  38. <td>{{.NumForks}}</td>
  39. <td>{{.NumIssues}}</td>
  40. <td>{{SizeFmt .Size}}</td>
  41. <td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
  42. <td><a class="delete-button" href="" data-url="{{$.Link}}/delete?page={{$.Page.Current}}" data-id="{{.ID}}" data-repo-name="{{.Name}}"><i class="trash icon text red"></i></a></td>
  43. </tr>
  44. {{end}}
  45. </tbody>
  46. </table>
  47. </div>
  48. {{template "base/paginate" .}}
  49. </div>
  50. </div>
  51. <div class="ui small basic delete modal">
  52. <div class="ui icon header">
  53. <i class="trash icon"></i>
  54. {{.i18n.Tr "repo.settings.delete"}}
  55. </div>
  56. <div class="content">
  57. <p>{{.i18n.Tr "repo.settings.delete_desc"}}</p>
  58. {{.i18n.Tr "repo.settings.delete_notices_2" `<span class="repo-name"></span>` | Safe}}<br>
  59. {{.i18n.Tr "repo.settings.delete_notices_fork_1"}}<br>
  60. </div>
  61. {{template "base/delete_modal_actions" .}}
  62. </div>
  63. {{template "base/footer" .}}