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.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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>
  34. <a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
  35. {{if .Owner.Visibility.IsPrivate}}
  36. <span class="text gold"><i class="octicon octicon-lock"></i></span>
  37. {{end}}
  38. </td>
  39. <td><a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a></td>
  40. <td><i class="fa fa{{if .IsPrivate}}-check{{end}}-square-o"></i></td>
  41. <td>{{.NumWatches}}</td>
  42. <td>{{.NumStars}}</td>
  43. <td>{{.NumForks}}</td>
  44. <td>{{.NumIssues}}</td>
  45. <td>{{SizeFmt .Size}}</td>
  46. <td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
  47. <td><a class="delete-button" href="" data-url="{{$.Link}}/delete?page={{$.Page.Current}}&sort={{$.SortType}}" data-id="{{.ID}}" data-name="{{.Name}}"><i class="trash icon text red"></i></a></td>
  48. </tr>
  49. {{end}}
  50. </tbody>
  51. </table>
  52. </div>
  53. {{template "base/paginate" .}}
  54. </div>
  55. </div>
  56. <div class="ui small basic delete modal">
  57. <div class="ui icon header">
  58. <i class="trash icon"></i>
  59. {{.i18n.Tr "repo.settings.delete"}}
  60. </div>
  61. <div class="content">
  62. <p>{{.i18n.Tr "repo.settings.delete_desc"}}</p>
  63. {{.i18n.Tr "repo.settings.delete_notices_2" `<span class="name"></span>` | Safe}}<br>
  64. {{.i18n.Tr "repo.settings.delete_notices_fork_1"}}<br>
  65. </div>
  66. {{template "base/delete_modal_actions" .}}
  67. </div>
  68. {{template "base/footer" .}}