diff options
author | micw <michael@wyraz.de> | 2019-09-05 11:13:51 +0200 |
---|---|---|
committer | Antoine GIRARD <sapk@users.noreply.github.com> | 2019-09-05 11:13:51 +0200 |
commit | 63c40796ef0b689350285c6aa6b5981e4a0844a9 (patch) | |
tree | 0707c068ff30afaaf7ef8deb41b32eb6f8986601 /templates/repo/create.tmpl | |
parent | 5fcef38f7f9fd9c9bcb1fdadcff962033f6da190 (diff) | |
download | gitea-63c40796ef0b689350285c6aa6b5981e4a0844a9.tar.gz gitea-63c40796ef0b689350285c6aa6b5981e4a0844a9.zip |
Display description of 'make this repo private' as help text, not as tooltip (#8097)
Diffstat (limited to 'templates/repo/create.tmpl')
-rw-r--r-- | templates/repo/create.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/repo/create.tmpl b/templates/repo/create.tmpl index 46289719e8..8163aaefa6 100644 --- a/templates/repo/create.tmpl +++ b/templates/repo/create.tmpl @@ -38,7 +38,7 @@ <input id="repo_name" name="repo_name" value="{{.repo_name}}" autofocus required> <span class="help">{{.i18n.Tr "repo.repo_name_helper"}}</span> </div> - <div class="inline field" data-tooltip={{.i18n.Tr "repo.visibility.tooltip"}}> + <div class="inline field"> <label>{{.i18n.Tr "repo.visibility"}}</label> <div class="ui checkbox"> {{if .IsForcedPrivate}} @@ -49,6 +49,7 @@ <label>{{.i18n.Tr "repo.visibility_helper" | Safe}}</label> {{end}} </div> + <span class="help">{{.i18n.Tr "repo.visibility_description"}}</span> </div> <div class="inline field {{if .Err_Description}}error{{end}}"> <label for="description">{{.i18n.Tr "repo.repo_desc"}}</label> |