diff options
author | 无闻 <u@gogs.io> | 2015-07-25 00:39:16 +0800 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2015-07-25 00:39:16 +0800 |
commit | 91ab2538c3e79bb3382e3f0e7cd46a080c3c084e (patch) | |
tree | df77d2d7e2161bfcadf792989746bdfcae26e559 /templates/admin | |
parent | 9cf334fca9f3fb3177012f9682a1fb234adef704 (diff) | |
parent | f3aab5dbe30f8e6a1032b524315f7fd37c3e0b24 (diff) | |
download | gitea-91ab2538c3e79bb3382e3f0e7cd46a080c3c084e.tar.gz gitea-91ab2538c3e79bb3382e3f0e7cd46a080c3c084e.zip |
Merge pull request #1244 from jamesa/develop
Add full name field to admin's user edit page (fixes #1130)
Diffstat (limited to 'templates/admin')
-rw-r--r-- | templates/admin/user/edit.tmpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/admin/user/edit.tmpl b/templates/admin/user/edit.tmpl index bdc0e3343f..4f4cc727ab 100644 --- a/templates/admin/user/edit.tmpl +++ b/templates/admin/user/edit.tmpl @@ -33,6 +33,10 @@ <label class="text-left">{{.User.Name}}</label> </div> <div class="field"> + <label for="full-name">{{.i18n.Tr "settings.full_name"}}</label> + <input class="ipt ipt-large ipt-radius {{if .Err_FullName}}ipt-error{{end}}" id="full-name" name="fullname" type="text" value="{{.User.FullName}}" /> + </div> + <div class="field"> <label class="req" for="email">{{.i18n.Tr "email"}}</label> <input class="ipt ipt-large ipt-radius {{if .Err_Email}}ipt-error{{end}}" id="email" name="email" type="email" value="{{.User.Email}}" required/> </div> |