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