mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content explore users">
|
|
{{template "explore/navbar" .}}
|
|
<div class="ui container">
|
|
{{template "explore/search" .}}
|
|
|
|
<div class="flex-list">
|
|
{{range .Users}}
|
|
<div class="flex-item flex-item-center">
|
|
<div class="flex-item-leading">
|
|
{{ctx.AvatarUtils.Avatar . 48}}
|
|
</div>
|
|
<div class="flex-item-main">
|
|
<div class="flex-item-title">
|
|
{{template "shared/user/name" .}}
|
|
{{if .Visibility.IsPrivate}}
|
|
<span class="ui basic tiny label">{{$.locale.Tr "repo.desc.private"}}</span>
|
|
{{end}}
|
|
</div>
|
|
<div class="flex-item-body">
|
|
{{if .Location}}
|
|
<span class="flex-text-inline">{{svg "octicon-location"}}{{.Location}}</span>
|
|
{{end}}
|
|
{{if and $.ShowUserEmail .Email $.IsSigned (not .KeepEmailPrivate)}}
|
|
<span class="flex-text-inline">
|
|
{{svg "octicon-mail"}}
|
|
<a href="mailto:{{.Email}}" rel="nofollow">{{.Email}}</a>
|
|
</span>
|
|
{{end}}
|
|
<span class="flex-text-inline">{{svg "octicon-calendar"}}{{$.locale.Tr "user.joined_on" (DateTime "short" .CreatedUnix) | Safe}}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
<div class="flex-item">{{$.locale.Tr "explore.user_no_results"}}</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|
|
|