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.

list.tmpl 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. {{.i18n.Tr "admin.repos.repo_manage_panel"}} ({{.i18n.Tr "admin.total" .Total}})
  10. </h4>
  11. <div class="ui attached segment">
  12. {{template "admin/base/search" .}}
  13. </div>
  14. <div class="ui attached table segment">
  15. <table class="ui very basic striped table">
  16. <thead>
  17. <tr>
  18. <th>ID</th>
  19. <th>{{.i18n.Tr "admin.repos.owner"}}</th>
  20. <th>{{.i18n.Tr "admin.repos.name"}}</th>
  21. <th>{{.i18n.Tr "admin.repos.private"}}</th>
  22. <th>{{.i18n.Tr "admin.repos.watches"}}</th>
  23. <th>{{.i18n.Tr "admin.repos.stars"}}</th>
  24. <th>{{.i18n.Tr "admin.repos.issues"}}</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>{{.NumIssues}}</td>
  39. <td><span title="{{DateFmtLong .Created}}">{{DateFmtShort .Created}}</span></td>
  40. <td><a class="delete-button" href="" data-url="{{$.Link}}/delete?page={{$.Page.Current}}" data-id="{{.ID}}"><i class="trash icon text red"></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. <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. <p>{{.i18n.Tr "repo.settings.delete_notices_2"}}</p>
  59. <p>{{.i18n.Tr "repo.settings.delete_notices_fork_1"}}</p>
  60. <p>{{.i18n.Tr "repo.settings.delete_notices_fork_2"}}</p>
  61. <p>{{.i18n.Tr "repo.settings.delete_notices_fork_3"}}</p>
  62. </div>
  63. {{template "base/delete_modal_actions" .}}
  64. </div>
  65. {{template "base/footer" .}}