2015-11-16 09:11:59 -07:00
|
|
|
{{template "base/head" .}}
|
2020-11-30 21:00:14 -07:00
|
|
|
<div class="page-content user profile">
|
2015-12-07 15:30:52 -07:00
|
|
|
<div class="ui container">
|
2017-12-30 17:47:52 -07:00
|
|
|
<div class="ui stackable grid">
|
2015-12-07 15:30:52 -07:00
|
|
|
<div class="ui five wide column">
|
|
|
|
<div class="ui card">
|
2022-06-10 05:06:34 -06:00
|
|
|
<div id="profile-avatar" class="content df"/>
|
2016-06-26 11:51:09 -06:00
|
|
|
{{if eq .SignedUserName .Owner.Name}}
|
2022-06-10 05:06:34 -06:00
|
|
|
<a class="image tooltip" href="{{AppSubUrl}}/user/settings" data-content="{{.i18n.Tr "user.change_avatar"}}" data-position="bottom center">
|
2020-12-03 11:46:11 -07:00
|
|
|
{{avatar .Owner 290}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</a>
|
|
|
|
{{else}}
|
2022-06-10 05:06:34 -06:00
|
|
|
<span class="image">
|
2020-12-03 11:46:11 -07:00
|
|
|
{{avatar .Owner 290}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</span>
|
|
|
|
{{end}}
|
2022-06-10 05:06:34 -06:00
|
|
|
</div>
|
2020-12-03 11:46:11 -07:00
|
|
|
<div class="content word-break profile-avatar-name">
|
2015-12-07 15:30:52 -07:00
|
|
|
{{if .Owner.FullName}}<span class="header text center">{{.Owner.FullName}}</span>{{end}}
|
|
|
|
<span class="username text center">{{.Owner.Name}}</span>
|
2022-04-24 14:03:39 -06:00
|
|
|
<a href="{{.Owner.HomeLink}}.rss"><i class="ui grey icon tooltip ml-3" data-content="{{.i18n.Tr "rss_feed"}}" data-position="bottom center">{{svg "octicon-rss" 18}}</i></a>
|
2022-05-25 10:29:40 -06:00
|
|
|
<div class="mt-3">
|
|
|
|
<a class="muted" href="{{.Owner.HomeLink}}?tab=followers">{{svg "octicon-person" 18 "mr-2"}}{{.Owner.NumFollowers}} {{.i18n.Tr "user.followers"}}</a> · <a class="muted" href="{{.Owner.HomeLink}}?tab=following">{{.Owner.NumFollowing}} {{.i18n.Tr "user.following"}}</a>
|
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2020-11-04 00:14:07 -07:00
|
|
|
<div class="extra content word-break">
|
2020-12-03 11:46:11 -07:00
|
|
|
<ul>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{if .Owner.Location}}
|
2020-09-11 14:19:00 -06:00
|
|
|
<li>{{svg "octicon-location"}} {{.Owner.Location}}</li>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
2019-02-19 07:11:50 -07:00
|
|
|
{{if .ShowUserEmail }}
|
2015-12-07 15:30:52 -07:00
|
|
|
<li>
|
2020-09-11 14:19:00 -06:00
|
|
|
{{svg "octicon-mail"}}
|
2015-12-07 15:30:52 -07:00
|
|
|
<a href="mailto:{{.Owner.Email}}" rel="nofollow">{{.Owner.Email}}</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{if .Owner.Website}}
|
|
|
|
<li>
|
2020-09-11 14:19:00 -06:00
|
|
|
{{svg "octicon-link"}}
|
2018-12-06 13:15:48 -07:00
|
|
|
<a target="_blank" rel="noopener noreferrer me" href="{{.Owner.Website}}">{{.Owner.Website}}</a>
|
2015-12-07 15:30:52 -07:00
|
|
|
</li>
|
|
|
|
{{end}}
|
2020-08-05 01:48:37 -06:00
|
|
|
{{if $.RenderedDescription}}
|
2019-03-18 20:28:10 -06:00
|
|
|
<li>
|
2021-05-07 02:43:41 -06:00
|
|
|
<div class="render-content markup">{{$.RenderedDescription|Str2html}}</div>
|
2019-03-18 20:28:10 -06:00
|
|
|
</li>
|
|
|
|
{{end}}
|
2017-03-20 02:31:08 -06:00
|
|
|
{{range .OpenIDs}}
|
|
|
|
{{if .Show}}
|
|
|
|
<li>
|
2021-05-22 15:29:46 -06:00
|
|
|
{{svg "fontawesome-openid"}}
|
2018-07-03 17:52:36 -06:00
|
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.URI}}">{{.URI}}</a>
|
2017-03-20 02:31:08 -06:00
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2020-09-11 14:19:00 -06:00
|
|
|
<li>{{svg "octicon-clock"}} {{.i18n.Tr "user.join_on"}} {{.Owner.CreatedUnix.FormatShort}}</li>
|
2019-02-18 09:00:27 -07:00
|
|
|
{{if and .Orgs .HasOrgsVisible}}
|
2016-01-11 19:09:59 -07:00
|
|
|
<li>
|
2019-05-13 14:52:59 -06:00
|
|
|
<ul class="user-orgs">
|
2016-01-11 19:09:59 -07:00
|
|
|
{{range .Orgs}}
|
2020-08-16 14:27:08 -06:00
|
|
|
{{if (or .Visibility.IsPublic (and ($.SignedUser) (or .Visibility.IsLimited (and (.HasMemberWithUserID $.SignedUserID) .Visibility.IsPrivate) ($.IsAdmin))))}}
|
2019-05-13 14:52:59 -06:00
|
|
|
<li>
|
2021-11-17 20:26:50 -07:00
|
|
|
<a class="tooltip" href="{{.HomeLink}}" data-content="{{.Name}}" data-position="top center">
|
2020-12-03 11:46:11 -07:00
|
|
|
{{avatar .}}
|
|
|
|
</a>
|
2019-05-13 14:52:59 -06:00
|
|
|
</li>
|
2019-02-18 09:00:27 -07:00
|
|
|
{{end}}
|
2016-01-11 19:09:59 -07:00
|
|
|
{{end}}
|
2019-05-13 14:52:59 -06:00
|
|
|
</ul>
|
2016-01-11 19:09:59 -07:00
|
|
|
</li>
|
2016-01-14 06:29:25 -07:00
|
|
|
{{end}}
|
2015-12-21 05:24:11 -07:00
|
|
|
{{if and .IsSigned (ne .SignedUserName .Owner.Name)}}
|
|
|
|
<li class="follow">
|
2021-11-22 08:21:55 -07:00
|
|
|
{{if $.IsFollowing}}
|
2021-12-20 10:18:26 -07:00
|
|
|
<form method="post" action="{{.Link}}?action=unfollow&redirect_to={{$.Link}}">
|
2020-02-25 13:28:47 -07:00
|
|
|
{{$.CsrfTokenHtml}}
|
2020-09-11 14:19:00 -06:00
|
|
|
<button type="submit" class="ui basic red button">{{svg "octicon-person"}} {{.i18n.Tr "user.unfollow"}}</button>
|
2020-02-25 13:28:47 -07:00
|
|
|
</form>
|
2015-12-21 05:24:11 -07:00
|
|
|
{{else}}
|
2021-12-20 10:18:26 -07:00
|
|
|
<form method="post" action="{{.Link}}?action=follow&redirect_to={{$.Link}}">
|
2020-02-25 13:28:47 -07:00
|
|
|
{{$.CsrfTokenHtml}}
|
2020-09-11 14:19:00 -06:00
|
|
|
<button type="submit" class="ui basic green button">{{svg "octicon-person"}} {{.i18n.Tr "user.follow"}}</button>
|
2020-02-25 13:28:47 -07:00
|
|
|
</form>
|
2015-12-21 05:24:11 -07:00
|
|
|
{{end}}
|
|
|
|
</li>
|
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ui eleven wide column">
|
2021-02-14 09:49:22 -07:00
|
|
|
<div class="ui secondary stackable pointing tight menu">
|
2021-04-15 10:53:57 -06:00
|
|
|
<a class='{{if and (ne .TabName "activity") (ne .TabName "following") (ne .TabName "followers") (ne .TabName "stars") (ne .TabName "watching") (ne .TabName "projects")}}active{{end}} item' href="{{.Owner.HomeLink}}">
|
2020-09-11 14:19:00 -06:00
|
|
|
{{svg "octicon-repo"}} {{.i18n.Tr "user.repositories"}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</a>
|
2022-03-31 11:31:53 -06:00
|
|
|
{{if .IsPackageEnabled}}
|
2022-03-30 02:42:47 -06:00
|
|
|
<a class='{{if eq .TabName "packages"}}active{{end}} item' href="{{.Owner.HomeLink}}/-/packages">
|
|
|
|
{{svg "octicon-package"}} {{.i18n.Tr "packages.title"}}
|
|
|
|
</a>
|
2022-03-31 11:31:53 -06:00
|
|
|
{{end}}
|
2016-12-29 07:58:24 -07:00
|
|
|
<a class='{{if eq .TabName "activity"}}active{{end}} item' href="{{.Owner.HomeLink}}?tab=activity">
|
2020-09-11 14:19:00 -06:00
|
|
|
{{svg "octicon-rss"}} {{.i18n.Tr "user.activity"}}
|
2016-12-29 07:58:24 -07:00
|
|
|
</a>
|
2021-04-15 10:53:57 -06:00
|
|
|
{{if not .DisableStars}}
|
|
|
|
<a class='{{if eq .TabName "stars"}}active{{end}} item' href="{{.Owner.HomeLink}}?tab=stars">
|
2021-05-16 14:18:18 -06:00
|
|
|
{{svg "octicon-star"}} {{.i18n.Tr "user.starred"}}
|
|
|
|
{{if .Owner.NumStars}}
|
|
|
|
<div class="ui primary label">{{.Owner.NumStars}}</div>
|
|
|
|
{{end}}
|
2021-04-15 10:53:57 -06:00
|
|
|
</a>
|
|
|
|
{{else}}
|
|
|
|
<a class='{{if eq .TabName "watching"}}active{{end}} item' href="{{.Owner.HomeLink}}?tab=watching">
|
2021-05-16 14:18:18 -06:00
|
|
|
{{svg "octicon-eye"}} {{.i18n.Tr "user.watched"}}
|
2021-04-15 10:53:57 -06:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2016-12-29 07:58:24 -07:00
|
|
|
|
|
|
|
{{if eq .TabName "activity"}}
|
2020-06-05 14:01:53 -06:00
|
|
|
{{if .Owner.KeepActivityPrivate}}
|
|
|
|
<div class="ui info message">
|
|
|
|
<p>{{.i18n.Tr "user.disabled_public_activity"}}</p>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-11-18 15:00:16 -07:00
|
|
|
{{template "user/heatmap" .}}
|
2015-12-07 15:30:52 -07:00
|
|
|
<div class="feeds">
|
|
|
|
{{template "user/dashboard/feeds" .}}
|
|
|
|
</div>
|
2016-12-29 07:58:24 -07:00
|
|
|
{{else if eq .TabName "stars"}}
|
|
|
|
<div class="stars">
|
2018-05-23 19:03:42 -06:00
|
|
|
{{template "explore/repo_search" .}}
|
2016-12-29 07:58:24 -07:00
|
|
|
{{template "explore/repo_list" .}}
|
2017-02-07 04:54:16 -07:00
|
|
|
{{template "base/paginate" .}}
|
2016-12-29 07:58:24 -07:00
|
|
|
</div>
|
2020-02-09 13:18:01 -07:00
|
|
|
{{else if eq .TabName "following"}}
|
|
|
|
{{template "repo/user_cards" .}}
|
|
|
|
{{else if eq .TabName "followers"}}
|
|
|
|
{{template "repo/user_cards" .}}
|
2016-12-29 07:58:24 -07:00
|
|
|
{{else}}
|
2018-05-23 19:03:42 -06:00
|
|
|
{{template "explore/repo_search" .}}
|
2016-12-29 07:58:24 -07:00
|
|
|
{{template "explore/repo_list" .}}
|
|
|
|
{{template "base/paginate" .}}
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-03-02 06:47:55 -07:00
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{template "base/footer" .}}
|