aboutsummaryrefslogtreecommitdiff
path: root/templates/repo/create.tmpl
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-10-25 04:26:26 -0400
committerUnknwon <u@gogs.io>2015-10-25 04:26:26 -0400
commit022820103d622dda74aa1c619ca46838a14b762a (patch)
tree2de093f709bb04c366cee4ebb73dcc3230f7019a /templates/repo/create.tmpl
parentd5fab7f1b993ac389d751bfb87774549c4f3f4c2 (diff)
#1657 allow forcing all private repos
Diffstat (limited to 'templates/repo/create.tmpl')
-rw-r--r--templates/repo/create.tmpl5
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}}">