2017-02-21 16:02:10 +01:00
{{ template "base/head" . }}
< div class = "repository settings edit" >
{{ template "repo/header" . }}
2017-03-15 23:39:38 +01:00
{{ template "repo/settings/navbar" . }}
2017-02-21 16:02:10 +01:00
< div class = "ui container" >
2017-03-15 23:39:38 +01:00
{{ template "base/alert" . }}
< h4 class = "ui top attached header" >
{{ .i18n.Tr "repo.default_branch" }}
< / h4 >
2017-04-06 17:33:57 +02:00
< div class = "ui attached segment" >
< p >
{{ .i18n.Tr "repo.settings.default_branch_desc" }}
< / p >
< form class = "ui form" action = " {{ .Link }} " method = "post" >
2017-03-15 23:39:38 +01:00
{{ .CsrfTokenHtml }}
< input type = "hidden" name = "action" value = "default_branch" >
{{ if not .Repository.IsBare }}
2017-04-06 17:33:57 +02:00
< div class = "required inline field" >
< div class = "ui dropdown selection" tabindex = "0" >
< select name = "branch" >
< option value = " {{ .Repository.DefaultBranch }} " > {{ .Repository.DefaultBranch }} </ option >
{{ range .Branches }}
< option value = " {{ . }} " > {{ . }} </ option >
{{ end }}
< / select > < i class = "dropdown icon" > < / i >
< div class = "default text" > {{ .Repository.DefaultBranch }} </ div >
< div class = "menu transition hidden" tabindex = "-1" style = "display: block !important;" >
{{ range .Branches }}
< div class = "item" data-value = " {{ . }} " > {{ . }} </ div >
{{ end }}
2017-02-21 16:02:10 +01:00
< / div >
< / div >
2017-03-15 23:39:38 +01:00
< button class = "ui green button" > {{ $.i18n.Tr "repo.settings.update_settings" }} </ button >
< / div >
2017-04-06 17:33:57 +02:00
{{ end }}
2017-03-15 23:39:38 +01:00
< / form >
< / div >
2017-02-21 16:02:10 +01:00
2017-03-15 23:39:38 +01:00
< h4 class = "ui top attached header" >
{{ .i18n.Tr "repo.settings.protected_branch" }}
< / h4 >
< div class = "ui attached table segment" >
< div class = "ui grid padded" >
< div class = "eight wide column" >
2017-04-06 17:33:57 +02:00
< div class = "ui fluid dropdown selection" tabindex = "0" >
2017-03-15 23:39:38 +01:00
< select id = "protectedBranch" name = "branch" data-url = " {{ .Repository.Link }} /settings/branches?action=protected_branch" >
{{ range .LeftBranches }}
< option value = "" > {{ $.i18n.Tr "repo.settings.choose_branch" }} </ option >
< option value = " {{ . }} " > {{ . }} </ option >
{{ end }}
< / select > < i class = "dropdown icon" > < / i >
< div class = "default text" > {{ .i18n.Tr "repo.settings.choose_branch" }} </ div >
< div class = "menu transition hidden" tabindex = "-1" style = "display: block !important;" >
{{ range .LeftBranches }}
< div class = "item" data-value = " {{ . }} " > {{ . }} </ div >
{{ end }}
2017-02-21 16:02:10 +01:00
< / div >
< / div >
< / div >
< / div >
2017-03-15 23:39:38 +01:00
< div class = "ui grid padded" >
< div class = "sixteen wide column" >
< table class = "ui single line table padded" >
< tbody >
{{ range .ProtectedBranches }}
< tr >
< td >< div class = "ui large label" > {{ .BranchName }} </ div ></ td >
< td class = "right aligned" >< button class = "rm ui red button" data-url = " {{ $.Repository.Link }} /settings/branches?action=protected_branch&id= {{ .ID }} " data-val = " {{ .BranchName }} " > Delete</ button ></ td >
< / tr >
{{ else }}
< tr class = "center aligned" >< td > {{ .i18n.Tr "repo.settings.no_protected_branch" }} </ td ></ tr >
{{ end }}
< / tbody >
< / table >
< / div >
< / div >
2017-02-21 16:02:10 +01:00
< / div >
< / div >
< / div >
2017-03-11 02:28:25 +01:00
{{ template "base/footer" . }}