diff options
author | Unknwon <u@gogs.io> | 2015-10-25 04:26:26 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-10-25 04:26:26 -0400 |
commit | 022820103d622dda74aa1c619ca46838a14b762a (patch) | |
tree | 2de093f709bb04c366cee4ebb73dcc3230f7019a /templates/repo/create.tmpl | |
parent | d5fab7f1b993ac389d751bfb87774549c4f3f4c2 (diff) |
#1657 allow forcing all private repos
Diffstat (limited to 'templates/repo/create.tmpl')
-rw-r--r-- | templates/repo/create.tmpl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/repo/create.tmpl b/templates/repo/create.tmpl index c2d1c460..183da494 100644 --- a/templates/repo/create.tmpl +++ b/templates/repo/create.tmpl @@ -41,8 +41,13 @@ <div class="inline field"> <label>{{.i18n.Tr "repo.visibility"}}</label> <div class="ui checkbox"> + {{if .IsForcedPrivate}} + <input name="private" type="checkbox" checked readonly> + <label>{{.i18n.Tr "repo.visiblity_helper_forced" | Safe}}</label> + {{else}} <input name="private" type="checkbox" {{if .private}}checked{{end}}> <label>{{.i18n.Tr "repo.visiblity_helper" | Safe}}</label> + {{end}} </div> </div> <div class="inline field {{if .Err_Description}}error{{end}}"> |