diff options
author | Unknwon <u@gogs.io> | 2016-08-07 11:01:47 -0700 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-08-07 11:01:47 -0700 |
commit | 99385db0c418fb49838eb1a23f391cf826d99202 (patch) | |
tree | 9c8fe94489becb5a1909d07156cbb8ed81f69d2f /templates | |
parent | 90dd0657b564210746c9c494c8c5b07dd8eee91f (diff) | |
download | gitea-99385db0c418fb49838eb1a23f391cf826d99202.tar.gz gitea-99385db0c418fb49838eb1a23f391cf826d99202.zip |
#3320 code cleanup
Diffstat (limited to 'templates')
-rw-r--r-- | templates/.VERSION | 2 | ||||
-rw-r--r-- | templates/install.tmpl | 2 | ||||
-rw-r--r-- | templates/user/settings/avatar.tmpl | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/templates/.VERSION b/templates/.VERSION index cee03732e8..f9b30b1cf6 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.65.0806
\ No newline at end of file +0.9.66.0806
\ No newline at end of file diff --git a/templates/install.tmpl b/templates/install.tmpl index 496c425654..c8c2cbd05a 100644 --- a/templates/install.tmpl +++ b/templates/install.tmpl @@ -179,7 +179,7 @@ </div> <div class="inline field"> <div class="ui checkbox" id="federated-avatar-lookup"> - <label class="poping up" data-content="{{.i18n.Tr "install.federated_avatar_lookup"}}"><strong>{{.i18n.Tr "install.federated_avatar_lookup"}}</strong></label> + <label class="poping up" data-content="{{.i18n.Tr "install.federated_avatar_lookup_popup"}}"><strong>{{.i18n.Tr "install.federated_avatar_lookup"}}</strong></label> <input name="enable_federated_avatar" type="checkbox" {{if .enable_federated_avatar}}checked{{end}}> </div> </div> diff --git a/templates/user/settings/avatar.tmpl b/templates/user/settings/avatar.tmpl index 926c9d8508..93286c4957 100644 --- a/templates/user/settings/avatar.tmpl +++ b/templates/user/settings/avatar.tmpl @@ -14,7 +14,7 @@ {{.CsrfTokenHtml}} {{if not DisableGravatar}} <div class="inline field"> - <div class="ui radio"> + <div class="ui radio checkbox"> <input name="source" value="lookup" type="radio" {{if not .SignedUser.UseCustomAvatar}}checked{{end}}> <label>{{.i18n.Tr "settings.lookup_avatar_by_mail"}}</label> </div> @@ -26,7 +26,7 @@ {{end}} <div class="inline field"> - <div class="ui radio"> + <div class="ui radio checkbox"> <input name="source" value="local" type="radio" {{if .SignedUser.UseCustomAvatar}}checked{{end}}> <label>{{.i18n.Tr "settings.enable_custom_avatar"}}</label> </div> |