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