summaryrefslogtreecommitdiffstats
path: root/templates/explore/user_list.tmpl
blob: 9abbff6d9c8f3740c3d2ff222f0b7c2f323e1b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div class="flex-list">
	{{range .Users}}
		<div class="flex-item gt-ac">
			<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">{{ctx.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 .Email (or (and $.ShowUserEmail $.IsSigned (not .KeepEmailPrivate)) $.PageIsAdminUsers)}}
						<span class="flex-text-inline">
							{{svg "octicon-mail"}}
							<a href="mailto:{{.Email}}">{{.Email}}</a>
						</span>
					{{end}}
					<span class="flex-text-inline">{{svg "octicon-calendar"}}{{ctx.Locale.Tr "user.joined_on" (DateTime "short" .CreatedUnix) | Safe}}</span>
				</div>
			</div>
		</div>
	{{else}}
		<div class="flex-item">{{ctx.Locale.Tr "explore.user_no_results"}}</div>
	{{end}}
</div>