mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
e0832da7fa
Backport #27246 by @yp05327 It seems that `Public` user visibility is missing in the template. Before: ![image](https://github.com/go-gitea/gitea/assets/18380374/a8e7f3e0-1b77-41a0-921a-10adba90211e) After: ![image](https://github.com/go-gitea/gitea/assets/18380374/b0bffe13-0ca6-453e-95d7-0794528d5733) Co-authored-by: yp05327 <576951401@qq.com>
66 lines
2 KiB
Go HTML Template
66 lines
2 KiB
Go HTML Template
<div class="flex-list">
|
|
<div class="flex-item">
|
|
<div class="flex-item-leading">
|
|
{{ctx.AvatarUtils.Avatar .User 48}}
|
|
</div>
|
|
<div class="flex-item-main">
|
|
<div class="flex-item-title">
|
|
{{template "shared/user/name" .User}}
|
|
{{if .User.IsAdmin}}
|
|
<span class="ui basic label">{{ctx.Locale.Tr "admin.users.admin"}}</span>
|
|
{{end}}
|
|
</div>
|
|
<div class="flex-item-body">
|
|
<b>{{ctx.Locale.Tr "admin.users.auth_source"}}:</b>
|
|
{{if eq .LoginSource.ID 0}}
|
|
{{ctx.Locale.Tr "admin.users.local"}}
|
|
{{else}}
|
|
{{.LoginSource.Name}}
|
|
{{end}}
|
|
</div>
|
|
<div class="flex-item-body">
|
|
<b>{{ctx.Locale.Tr "admin.users.activated"}}:</b>
|
|
{{if .User.IsActive}}
|
|
{{svg "octicon-check"}}
|
|
{{else}}
|
|
{{svg "octicon-x"}}
|
|
{{end}}
|
|
</div>
|
|
<div class="flex-item-body">
|
|
<b>{{ctx.Locale.Tr "admin.users.restricted"}}:</b>
|
|
{{if .User.IsRestricted}}
|
|
{{svg "octicon-check"}}
|
|
{{else}}
|
|
{{svg "octicon-x"}}
|
|
{{end}}
|
|
</div>
|
|
<div class="flex-item-body">
|
|
<b>{{ctx.Locale.Tr "settings.visibility"}}:</b>
|
|
{{if .User.Visibility.IsPublic}}{{ctx.Locale.Tr "settings.visibility.public"}}{{end}}
|
|
{{if .User.Visibility.IsLimited}}{{ctx.Locale.Tr "settings.visibility.limited"}}{{end}}
|
|
{{if .User.Visibility.IsPrivate}}{{ctx.Locale.Tr "settings.visibility.private"}}{{end}}
|
|
</div>
|
|
<div class="flex-item-body">
|
|
<b>{{ctx.Locale.Tr "admin.users.2fa"}}:</b>
|
|
{{if .TwoFactorEnabled}}
|
|
<span class="text green">{{svg "octicon-check"}}</span>
|
|
{{else}}
|
|
{{svg "octicon-x"}}
|
|
{{end}}
|
|
</div>
|
|
{{if .User.Location}}
|
|
<div class="flex-item-body">
|
|
<span class="flex-text-inline">{{svg "octicon-location"}}{{.User.Location}}</span>
|
|
</div>
|
|
{{end}}
|
|
{{if .User.Website}}
|
|
<div class="flex-item-body">
|
|
<span class="flex-text-inline">
|
|
{{svg "octicon-link"}}
|
|
<a target="_blank" href="{{.User.Website}}">{{.User.Website}}</a>
|
|
</span>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|