2015-09-26 00:38:43 +02:00
{{ template "base/head" . }}
< div class = "admin user" >
2017-03-15 23:39:38 +01:00
{{ template "admin/navbar" . }}
2015-09-26 01:45:44 +02:00
< div class = "ui container" >
2017-03-15 23:39:38 +01:00
{{ template "base/alert" . }}
< h4 class = "ui top attached header" >
{{ .i18n.Tr "admin.repos.repo_manage_panel" }} ({{ .i18n.Tr "admin.total" .Total }} )
< / h4 >
< div class = "ui attached segment" >
{{ template "admin/base/search" . }}
< / div >
< div class = "ui attached table segment" >
< table class = "ui very basic striped table" >
< thead >
< tr >
< th > ID< / th >
< th > {{ .i18n.Tr "admin.repos.owner" }} </ th >
< th > {{ .i18n.Tr "admin.repos.name" }} </ th >
< th > {{ .i18n.Tr "admin.repos.private" }} </ th >
< th > {{ .i18n.Tr "admin.repos.watches" }} </ th >
< th > {{ .i18n.Tr "admin.repos.stars" }} </ th >
< th > {{ .i18n.Tr "admin.repos.issues" }} </ th >
2017-04-11 15:30:15 +02:00
< th > {{ .i18n.Tr "admin.repos.size" }} </ th >
2017-03-15 23:39:38 +01:00
< th > {{ .i18n.Tr "admin.users.created" }} </ th >
< th > {{ .i18n.Tr "admin.notices.op" }} </ th >
< / tr >
< / thead >
< tbody >
{{ range .Repos }}
< tr >
< td > {{ .ID }} </ td >
< td >< a href = " {{ AppSubUrl }} / {{ .Owner.Name }} " > {{ .Owner.Name }} </ a ></ td >
< td >< a href = " {{ AppSubUrl }} / {{ .Owner.Name }} / {{ .Name }} " > {{ .Name }} </ a ></ td >
< td >< i class = "fa fa {{ if .IsPrivate }} -check {{ end }} -square-o" ></ i ></ td >
< td > {{ .NumWatches }} </ td >
< td > {{ .NumStars }} </ td >
< td > {{ .NumIssues }} </ td >
2017-04-11 15:30:15 +02:00
< td > {{ SizeFmt .Size }} </ td >
2017-12-11 05:37:04 +01:00
< td >< span title = " {{ .CreatedUnix.FormatLong }} " > {{ .CreatedUnix.FormatShort }} </ span ></ td >
2018-01-15 07:03:30 +01:00
< 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 >
2017-03-15 23:39:38 +01:00
< / tr >
{{ end }}
< / tbody >
< / table >
2015-09-26 01:45:44 +02:00
< / div >
2017-03-15 23:39:38 +01:00
{{ template "base/paginate" . }}
2015-09-26 01:45:44 +02:00
< / div >
2014-08-29 14:50:43 +02:00
< / div >
2015-12-05 23:39:29 +01:00
< div class = "ui small basic delete modal" >
2015-12-07 23:30:52 +01:00
< div class = "ui icon header" >
< i class = "trash icon" > < / i >
{{ .i18n.Tr "repo.settings.delete" }}
< / div >
< div class = "content" >
< p > {{ .i18n.Tr "repo.settings.delete_desc" }} </ p >
2018-01-15 07:03:30 +01:00
{{ .i18n.Tr "repo.settings.delete_notices_2" `<span class="repo-name"></span>` | Safe }} < br >
2016-07-23 14:42:46 +02:00
{{ .i18n.Tr "repo.settings.delete_notices_fork_1" }} < br >
2015-12-07 23:30:52 +01:00
< / div >
{{ template "base/delete_modal_actions" . }}
2015-12-05 23:39:29 +01:00
< / div >
2015-12-07 23:30:52 +01:00
{{ template "base/footer" . }}