Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
167 lines
6.2 KiB
167 lines
6.2 KiB
{{template "base/head" .}} |
|
<div class="page-content user profile"> |
|
<div class="ui container"> |
|
<div class="ui stackable grid"> |
|
<div class="ui five wide column"> |
|
<div class="ui card"> |
|
{{if eq .SignedUserName .Owner.Name}} |
|
<a class="image tooltip" href="{{AppSubUrl}}/user/settings" id="profile-avatar" data-content="{{.i18n.Tr "user.change_avatar"}}" data-position="bottom center"> |
|
{{avatar .Owner 290}} |
|
</a> |
|
{{else}} |
|
<span class="image" id="profile-avatar"> |
|
{{avatar .Owner 290}} |
|
</span> |
|
{{end}} |
|
<div class="content word-break profile-avatar-name"> |
|
{{if .Owner.FullName}}<span class="header text center">{{.Owner.FullName}}</span>{{end}} |
|
<span class="username text center">{{.Owner.Name}}</span> |
|
</div> |
|
<div class="extra content word-break"> |
|
<ul> |
|
{{if .Owner.Location}} |
|
<li>{{svg "octicon-location"}} {{.Owner.Location}} ({{.Owner.LocationCoordinate}})</li> |
|
{{end}} |
|
{{if .ShowUserEmail }} |
|
<li> |
|
{{svg "octicon-mail"}} |
|
<a href="mailto:{{.Owner.Email}}" rel="nofollow">{{.Owner.Email}}</a> |
|
</li> |
|
{{end}} |
|
{{if .Owner.Website}} |
|
<li> |
|
{{svg "octicon-link"}} |
|
<a target="_blank" rel="noopener noreferrer me" href="{{.Owner.Website}}">{{.Owner.Website}}</a> |
|
</li> |
|
{{end}} |
|
{{if $.RenderedDescription}} |
|
<li> |
|
<h3>{{.i18n.Tr "user.user_bio"}}</h3> |
|
<div class="render-content markup">{{$.RenderedDescription|Str2html}}</div> |
|
</li> |
|
{{end}} |
|
{{if $.RenderedCompetences}} |
|
<li> |
|
<h3>{{.i18n.Tr "user.user_competences"}}</h3> |
|
<div class="render-content markup">{{$.RenderedCompetences|Str2html}}</div> |
|
</li> |
|
{{end}} |
|
{{if $.RenderedResources}} |
|
<li> |
|
<h3>{{.i18n.Tr "user.user_resources"}}</h3> |
|
<div class="render-content markup">{{$.RenderedResources|Str2html}}</div> |
|
</li> |
|
{{end}} |
|
{{if $.RenderedInterests}} |
|
<li> |
|
<h3>{{.i18n.Tr "user.user_interests"}}</h3> |
|
<div class="render-content markup">{{$.RenderedInterests|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"}} {{.i18n.Tr "user.join_on"}} {{.Owner.CreatedUnix.FormatShort}}</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 class="tooltip" href="{{.HomeLink}}" data-content="{{.Name}}" data-position="top center"> |
|
{{avatar .}} |
|
</a> |
|
</li> |
|
{{end}} |
|
{{end}} |
|
</ul> |
|
</li> |
|
{{end}} |
|
{{if and .IsSigned (ne .SignedUserName .Owner.Name)}} |
|
<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"}} {{.i18n.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"}} {{.i18n.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")}}active{{end}} item' href="{{.Owner.HomeLink}}"> |
|
{{svg "octicon-repo"}} {{.i18n.Tr "user.repositories"}} |
|
</a> |
|
<a class='{{if eq .TabName "activity"}}active{{end}} item' href="{{.Owner.HomeLink}}?tab=activity"> |
|
{{svg "octicon-rss"}} {{.i18n.Tr "user.activity"}} |
|
</a> |
|
{{if not .DisableStars}} |
|
<a class='{{if eq .TabName "stars"}}active{{end}} item' href="{{.Owner.HomeLink}}?tab=stars"> |
|
{{svg "octicon-star"}} {{.i18n.Tr "user.starred"}} |
|
{{if .Owner.NumStars}} |
|
<div class="ui primary label">{{.Owner.NumStars}}</div> |
|
{{end}} |
|
</a> |
|
{{else}} |
|
<a class='{{if eq .TabName "watching"}}active{{end}} item' href="{{.Owner.HomeLink}}?tab=watching"> |
|
{{svg "octicon-eye"}} {{.i18n.Tr "user.watched"}} |
|
</a> |
|
{{end}} |
|
<a class='{{if eq .TabName "following"}}active{{end}} item' href="{{.Owner.HomeLink}}?tab=following"> |
|
{{svg "octicon-person"}} {{.i18n.Tr "user.following"}} |
|
{{if .Owner.NumFollowing}} |
|
<div class="ui primary label">{{.Owner.NumFollowing}}</div> |
|
{{end}} |
|
</a> |
|
<a class='{{if eq .TabName "followers"}}active{{end}} item' href="{{.Owner.HomeLink}}?tab=followers"> |
|
{{svg "octicon-person"}} {{.i18n.Tr "user.followers"}} |
|
{{if .Owner.NumFollowers}} |
|
<div class="ui primary label">{{.Owner.NumFollowers}}</div> |
|
{{end}} |
|
</a> |
|
</div> |
|
|
|
{{if eq .TabName "activity"}} |
|
{{if .Owner.KeepActivityPrivate}} |
|
<div class="ui info message"> |
|
<p>{{.i18n.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" .}}
|
|
|