summaryrefslogtreecommitdiffstats
path: root/templates/user/profile.tmpl
blob: 431961089d532b2f1abc125e2a0891124a618212 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content user profile">
	<div class="ui container">
		<div class="ui stackable grid">
			<div class="ui five wide column">
				<div class="ui card">
					<div id="profile-avatar" class="content gt-df">
					{{if eq .SignedUserID .ContextUser.ID}}
						<a class="image" href="{{AppSubUrl}}/user/settings" data-tooltip-content="{{.locale.Tr "user.change_avatar"}}">
							{{avatar $.Context .ContextUser 290}}
						</a>
					{{else}}
						<span class="image">
							{{avatar $.Context .ContextUser 290}}
						</span>
					{{end}}
					</div>
					<div class="content gt-word-break profile-avatar-name">
						{{if .ContextUser.FullName}}<span class="header text center">{{.ContextUser.FullName}}</span>{{end}}
						<span class="username text center">{{.ContextUser.Name}}</span>
						{{if .EnableFeed}}
							<a href="{{.ContextUser.HomeLink}}.rss"><i class="ui text grey gt-ml-3" data-tooltip-content="{{.locale.Tr "rss_feed"}}">{{svg "octicon-rss" 18}}</i></a>
						{{end}}
						<div class="gt-mt-3">
							<a class="muted" href="{{.ContextUser.HomeLink}}?tab=followers">{{svg "octicon-person" 18 "gt-mr-2"}}{{.NumFollowers}} {{.locale.Tr "user.followers"}}</a> · <a class="muted" href="{{.ContextUser.HomeLink}}?tab=following">{{.NumFollowing}} {{.locale.Tr "user.following"}}</a>
						</div>
					</div>
					<div class="extra content gt-word-break">
						<ul>
							{{if .ContextUser.Location}}
								<li>{{svg "octicon-location"}} {{.ContextUser.Location}}</li>
							{{end}}
							{{if (eq .SignedUserID .ContextUser.ID)}}
								<li>
									{{svg "octicon-mail"}}
									<a href="mailto:{{.ContextUser.Email}}" rel="nofollow">{{.ContextUser.Email}}</a>
									<a href="{{AppSubUrl}}/user/settings#keep-email-private">
										{{if .ShowUserEmail}}
											<i class="ui right" data-tooltip-content="{{.locale.Tr "user.email_visibility.limited"}}">
												{{svg "octicon-unlock"}}
											</i>
										{{else}}
											<i class="ui right" data-tooltip-content="{{.locale.Tr "user.email_visibility.private"}}">
												{{svg "octicon-lock"}}
											</i>
										{{end}}
									</a>
								</li>
							{{else}}
								{{if .ShowUserEmail}}
									<li>
										{{svg "octicon-mail"}}
										<a href="mailto:{{.ContextUser.Email}}" rel="nofollow">{{.ContextUser.Email}}</a>
									</li>
								{{end}}
							{{end}}
							{{if .ContextUser.Website}}
								<li>
									{{svg "octicon-link"}}
									<a target="_blank" rel="noopener noreferrer me" href="{{.ContextUser.Website}}">{{.ContextUser.Website}}</a>
								</li>
							{{end}}
							{{if $.RenderedDescription}}
								<li>
									<div class="render-content markup">{{$.RenderedDescription|Str2html}}</div>
								</li>
							{{end}}
							{{range .OpenIDs}}
								{{if .Show}}
									<li>
										{{svg "fontawesome-openid"}}
										<a target="_blank" rel="noopener noreferrer" href="{{.URI}}">{{.URI}}</a>
									</li>
								{{end}}
							{{end}}
							<li>{{svg "octicon-clock"}} {{.locale.Tr "user.joined_on" (DateTime "short" .ContextUser.CreatedUnix) | Safe}}</li>
							{{if and .Orgs .HasOrgsVisible}}
							<li>
								<ul class="user-orgs">
								{{range .Orgs}}
									{{if (or .Visibility.IsPublic (and ($.SignedUser) (or .Visibility.IsLimited (and (.HasMemberWithUserID $.SignedUserID) .Visibility.IsPrivate) ($.IsAdmin))))}}
									<li>
										<a href="{{.HomeLink}}" data-tooltip-content="{{.Name}}">
											{{avatar $.Context .}}
										</a>
									</li>
									{{end}}
								{{end}}
								</ul>
							</li>
							{{end}}
							{{if .Badges}}
							<li>
								<ul class="user-badges">
								{{range .Badges}}
									<li>
										<img width="64" height="64" src="{{.ImageURL}}" alt="{{.Description}}" data-tooltip-content="{{.Description}}">
									</li>
								{{end}}
								</ul>
							</li>
							{{end}}
							{{if and .IsSigned (ne .SignedUserID .ContextUser.ID)}}
							<li class="follow">
								{{if $.IsFollowing}}
									<form method="post" action="{{.Link}}?action=unfollow&redirect_to={{$.Link}}">
										{{$.CsrfTokenHtml}}
										<button type="submit" class="ui basic red button">{{svg "octicon-person"}} {{.locale.Tr "user.unfollow"}}</button>
									</form>
								{{else}}
									<form method="post" action="{{.Link}}?action=follow&redirect_to={{$.Link}}">
										{{$.CsrfTokenHtml}}
										<button type="submit" class="ui basic green button">{{svg "octicon-person"}} {{.locale.Tr "user.follow"}}</button>
									</form>
								{{end}}
							</li>
							{{end}}
						</ul>
					</div>
				</div>
			</div>
			<div class="ui eleven wide column">
				<div class="ui secondary stackable pointing tight menu">
					<a class='{{if and (ne .TabName "activity") (ne .TabName "following") (ne .TabName "followers") (ne .TabName "stars") (ne .TabName "watching") (ne .TabName "projects") (ne .TabName "code")}}active {{end}}item' href="{{.ContextUser.HomeLink}}">
						{{svg "octicon-repo"}} {{.locale.Tr "user.repositories"}}
						{{if .ContextUser.NumRepos}}
							<div class="ui small label">{{.ContextUser.NumRepos}}</div>
						{{end}}
					</a>
					<a href="{{.ContextUser.HomeLink}}/-/projects" class="{{if eq .TabName "projects"}}active {{end}}item">
						{{svg "octicon-project-symlink"}} {{.locale.Tr "user.projects"}}
					</a>
					{{if .IsPackageEnabled}}
					<a class='{{if eq .TabName "packages"}}active {{end}}item' href="{{.ContextUser.HomeLink}}/-/packages">
						{{svg "octicon-package"}} {{.locale.Tr "packages.title"}}
					</a>
					{{end}}
					{{if and (not $.UnitTypeCode.UnitGlobalDisabled) .IsRepoIndexerEnabled}}
					<a class='{{if eq .TabName "code"}}active {{end}}item' href="{{.ContextUser.HomeLink}}/-/code">
						{{svg "octicon-code"}} {{.locale.Tr "user.code"}}
					</a>
					{{end}}
					<a class='{{if eq .TabName "activity"}}active {{end}}item' href="{{.ContextUser.HomeLink}}?tab=activity">
						{{svg "octicon-rss"}} {{.locale.Tr "user.activity"}}
					</a>
					{{if not .DisableStars}}
						<a class='{{if eq .TabName "stars"}}active {{end}}item' href="{{.ContextUser.HomeLink}}?tab=stars">
							{{svg "octicon-star"}} {{.locale.Tr "user.starred"}}
							{{if .ContextUser.NumStars}}
								<div class="ui small label">{{.ContextUser.NumStars}}</div>
							{{end}}
						</a>
					{{else}}
						<a class='{{if eq .TabName "watching"}}active {{end}}item' href="{{.ContextUser.HomeLink}}?tab=watching">
							{{svg "octicon-eye"}} {{.locale.Tr "user.watched"}}
						</a>
					{{end}}
				</div>

				{{if eq .TabName "activity"}}
					{{if .ContextUser.KeepActivityPrivate}}
						<div class="ui info message">
							<p>{{.locale.Tr "user.disabled_public_activity"}}</p>
						</div>
					{{end}}
					{{template "user/heatmap" .}}
					<div class="feeds">
						{{template "user/dashboard/feeds" .}}
					</div>
				{{else if eq .TabName "stars"}}
					<div class="stars">
						{{template "explore/repo_search" .}}
						{{template "explore/repo_list" .}}
						{{template "base/paginate" .}}
					</div>
				{{else if eq .TabName "following"}}
					{{template "repo/user_cards" .}}
				{{else if eq .TabName "followers"}}
					{{template "repo/user_cards" .}}
				{{else}}
					{{template "explore/repo_search" .}}
					{{template "explore/repo_list" .}}
					{{template "base/paginate" .}}
				{{end}}
			</div>
		</div>
	</div>
</div>
{{template "base/footer" .}}