diff options
author | 6543 <6543@obermui.de> | 2024-03-02 22:55:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-02 22:55:02 +0100 |
commit | e3e6569c5fd8c69aa65384e6d1636cc14b23a32b (patch) | |
tree | d43b84efecd46f4b57c9ce6a5558f9c5b2280078 /templates/admin/user/view_details.tmpl | |
parent | 937e8b55149388840bbf6c4d7216495bc3dd2fe9 (diff) | |
download | gitea-e3e6569c5fd8c69aa65384e6d1636cc14b23a32b.tar.gz gitea-e3e6569c5fd8c69aa65384e6d1636cc14b23a32b.zip |
Add option to set language in admin user view (#28449)
![image](https://github.com/go-gitea/gitea/assets/24977596/be7e3f92-af3f-4628-b4ed-abf6439687f3)
`/admin/users/<UserID>/edit`
![image](https://github.com/go-gitea/gitea/assets/24977596/906af0dd-cceb-4ed9-9cd9-32c71ae1bf71)
`/admin/users/<UserID>`
---
*Sponsored by Kithara Software GmbH*
Diffstat (limited to 'templates/admin/user/view_details.tmpl')
-rw-r--r-- | templates/admin/user/view_details.tmpl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/admin/user/view_details.tmpl b/templates/admin/user/view_details.tmpl index 21425eecb4..be2f32b5ec 100644 --- a/templates/admin/user/view_details.tmpl +++ b/templates/admin/user/view_details.tmpl @@ -48,6 +48,14 @@ {{svg "octicon-x"}} {{end}} </div> + {{if .User.Language}} + <div class="flex-item-body"> + <span class="flex-text-inline"> + <b>{{ctx.Locale.Tr "settings.language"}}:</b> + {{range .AllLangs}}{{if eq $.User.Language .Lang}}{{.Name}}{{end}}{{end}} + </span> + </div> + {{end}} {{if .User.Location}} <div class="flex-item-body"> <span class="flex-text-inline">{{svg "octicon-location"}}{{.User.Location}}</span> |