parent
f69761563b
commit
71e4689d11
File diff suppressed because one or more lines are too long
@ -0,0 +1,57 @@ |
|||||||
|
.profile-avatar { |
||||||
|
width: 200px; |
||||||
|
height: 200px; |
||||||
|
border-radius: 6px; |
||||||
|
} |
||||||
|
#profile-name { |
||||||
|
padding: 10px 0; |
||||||
|
} |
||||||
|
#profile-fullname { |
||||||
|
font-size: 1.6em; |
||||||
|
} |
||||||
|
#profile-username { |
||||||
|
font-size: 1.6em; |
||||||
|
font-weight: bold; |
||||||
|
} |
||||||
|
.profile-info { |
||||||
|
padding: 0 50px; |
||||||
|
font-size: 14px; |
||||||
|
ul { |
||||||
|
padding-bottom: 10px; |
||||||
|
.list-group-item { |
||||||
|
background-color: transparent; |
||||||
|
padding-top: 5px; |
||||||
|
color: #666; |
||||||
|
} |
||||||
|
.profile-rel { |
||||||
|
width: 31%; |
||||||
|
text-align: center; |
||||||
|
display: inline-block; |
||||||
|
strong { |
||||||
|
display: block; |
||||||
|
font-size: 28px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 1; |
||||||
|
} |
||||||
|
p { |
||||||
|
font-size: 12px; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
#profile-header { |
||||||
|
li { |
||||||
|
a { |
||||||
|
font-size: 1.2em; |
||||||
|
color: #444444; |
||||||
|
padding: .4em .8em; |
||||||
|
&:hover { |
||||||
|
background-color: transparent; |
||||||
|
color: @dashboardHeaderLinkHoverColor; |
||||||
|
} |
||||||
|
} |
||||||
|
.current { |
||||||
|
border-bottom: 2px solid #D26911; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,42 @@ |
|||||||
|
{{range .Feeds}} |
||||||
|
<div class="news clear"> |
||||||
|
<div class="avatar left"> |
||||||
|
<img class="avatar-30" src="{{AvatarLink .GetActEmail}}" alt=""> |
||||||
|
</div> |
||||||
|
<div class="content left {{if eq .GetOpType 5}}push-news{{end}} grid-4-5"> |
||||||
|
<p class="text-bold"> |
||||||
|
<a href="{{AppSubUrl}}/{{.GetActUserName}}">{{.GetActUserName}}</a> |
||||||
|
{{if eq .GetOpType 1}} |
||||||
|
{{$.i18n.Tr "action.create_repo" AppSubUrl .GetRepoLink .GetRepoLink | Str2html}} |
||||||
|
{{else if eq .GetOpType 5}} |
||||||
|
{{$.i18n.Tr "action.commit_repo" AppSubUrl .GetRepoLink .GetBranch .GetBranch AppSubUrl .GetRepoLink .GetRepoLink | Str2html}} |
||||||
|
{{else if eq .GetOpType 6}} |
||||||
|
{{ $index := index .GetIssueInfos 0}} |
||||||
|
{{$.i18n.Tr "action.create_issue" AppSubUrl .GetRepoLink $index .GetRepoLink $index | Str2html}} |
||||||
|
{{else if eq .GetOpType 8}} |
||||||
|
{{$.i18n.Tr "action.transfer_repo" .GetRepoName AppSubUrl .GetRepoLink .GetRepoLink | Str2html}} |
||||||
|
{{else if eq .GetOpType 10}} |
||||||
|
{{ $index := index .GetIssueInfos 0}} |
||||||
|
{{$.i18n.Tr "action.comment_issue" AppSubUrl .GetRepoLink $index .GetRepoLink $index | Str2html}} |
||||||
|
{{end}} |
||||||
|
</p> |
||||||
|
{{if eq .GetOpType 5}} |
||||||
|
<div class="news-content content"> |
||||||
|
<ul class="list-no-style"> |
||||||
|
{{ $push := ActionContent2Commits .}} |
||||||
|
{{ $repoLink := .GetRepoLink}} |
||||||
|
{{range $push.Commits}} |
||||||
|
<li><img class="avatar-16" src="{{AvatarLink .AuthorEmail}}?s=16"> <a href="{{AppSubUrl}}/{{$repoLink}}/commit/{{.Sha1}}">{{ShortSha .Sha1}}</a> <span class="text-truncate grid-4-5">{{.Message}}</span></li> |
||||||
|
{{end}} |
||||||
|
</ul> |
||||||
|
</div> |
||||||
|
{{else if eq .GetOpType 6}} |
||||||
|
<p class="news-content comment-news">{{index .GetIssueInfos 1}}</p> |
||||||
|
{{else if eq .GetOpType 10}} |
||||||
|
<p class="news-content comment-news">{{index .GetIssueInfos 1}}</p> |
||||||
|
{{end}} |
||||||
|
<p class="news-time text-italic">{{TimeSince .GetCreate $.i18n.Lang}}</p> |
||||||
|
</div> |
||||||
|
<i class="mega-octicon octicon-{{ActionIcon .GetOpType}} right"></i> |
||||||
|
</div> |
||||||
|
{{end}} |
@ -1,81 +1,91 @@ |
|||||||
{{template "base/head" .}} |
{{template "ng/base/head" .}} |
||||||
{{template "base/navbar" .}} |
{{template "ng/base/header" .}} |
||||||
<div id="body" class="container" data-page="user"> |
<div class="main-wrapper"> |
||||||
<div id="user-profile" class="col-md-3"> |
<div id="user-profile-page" class="container clear"> |
||||||
<div class="profile-avatar text-center"> |
<div class="grid-1-4 left"> |
||||||
<a href="http://gravatar.com/emails/" class="center-block" data-toggle="tooltip" data-placement="bottom" title="Change your avatar at gravatar.com"> |
<div class="text-center"> |
||||||
<img id="user-avatar" src="{{.Owner.AvatarLink}}?s=200" alt="user-avatar" title="{{.Owner.Name}}"/> |
<a href="http://gravatar.com/emails/" id="profile-avatar" original-title="{{.i18n.Tr "user.change_avatar"}}"> |
||||||
</a> |
<img class="profile-avatar" src="{{.Owner.AvatarLink}}?s=200"title="{{.Owner.Name}}"/> |
||||||
{{if .Owner.FullName}}<span id="user-full-name" class="center-block">{{.Owner.FullName}}</span>{{end}} |
</a> |
||||||
<span id="user-name" class="center-block">{{.Owner.Name}}</span> |
<div id="profile-name"> |
||||||
|
{{if .Owner.FullName}}<span id="profile-fullname" class="center-block">{{.Owner.FullName}}</span><br>{{end}} |
||||||
|
<span class="center-block" id="profile-username">{{.Owner.Name}}</span> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="profile-info"> |
||||||
|
<hr> |
||||||
|
<ul class="list-no-style"> |
||||||
|
{{if .Owner.Location}} |
||||||
|
<li class="list-group-item"><i class="octicon octicon-location"></i> {{.Owner.Location}}</li> |
||||||
|
{{end}} |
||||||
|
{{if .Owner.Email}} |
||||||
|
<li class="list-group-item"><i class="octicon octicon-mail"></i> <a href="mailto:{{.Owner.Email}}" rel="nofollow">{{.Owner.Email}}</a></li> |
||||||
|
{{end}} |
||||||
|
{{if .Owner.Website}} |
||||||
|
<li class="list-group-item"><i class="octicon octicon-link"></i> <a target="_blank" href="{{.Owner.Website}}">{{.Owner.Website}}</a></li> |
||||||
|
{{end}} |
||||||
|
<li class="list-group-item"><i class="octicon octicon-clock"></i> {{.i18n.Tr "user.join_on"}} {{DateFormat .Owner.Created "M d, Y"}}</li> |
||||||
|
</ul> |
||||||
|
<hr> |
||||||
|
<ul class="list-no-style"> |
||||||
|
<li class="list-group-item profile-rel"> |
||||||
|
<a class="text-black" href=""> |
||||||
|
<strong>{{.Owner.NumFollowers}}</strong> |
||||||
|
<p>{{.i18n.Tr "user.followers"}}</p> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li class="list-group-item profile-rel"> |
||||||
|
<a class="text-black" href=""> |
||||||
|
<strong>{{.Owner.NumStars}}</strong> |
||||||
|
<p>{{.i18n.Tr "user.starred"}}</p> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li class="list-group-item profile-rel"> |
||||||
|
<a class="text-black" href=""> |
||||||
|
<strong>{{.Owner.NumFollowings}}</strong> |
||||||
|
<p>{{.i18n.Tr "user.following"}}</p> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
</ul> |
||||||
|
<hr> |
||||||
|
</div> |
||||||
</div> |
</div> |
||||||
|
<div class="grid-3-4 left"> |
||||||
<div class="profile-info"> |
<ul class="menu menu-line" id="profile-header"> |
||||||
<ul class="list-group"> |
<li> |
||||||
{{if .Owner.Location}} |
<a {{if not .TabName}}class="current"{{end}} href="{{.Owner.HomeLink}}"><i class="octicon octicon-repo"></i> {{.i18n.Tr "user.repositories"}}</a> |
||||||
<li class="list-group-item"><i class="fa fa-thumb-tack"></i>{{.Owner.Location}}</li> |
</li> |
||||||
{{end}} |
<li> |
||||||
{{if .Owner.Email}} |
<a {{if eq .TabName "activity"}}class="current"{{end}} href="{{.Owner.HomeLink}}?tab=activity"><i class="octicon octicon-repo"></i> {{.i18n.Tr "user.activity"}}</a> |
||||||
<li class="list-group-item"><i class="fa fa-envelope"></i><a href="mailto:{{.Owner.Email}}" rel="nofollow">{{.Owner.Email}}</a></li> |
|
||||||
{{end}} |
|
||||||
{{if .Owner.Website}} |
|
||||||
<li class="list-group-item"><i class="fa fa-link"></i><a target="_blank" href="{{.Owner.Website}}">{{.Owner.Website}}</a></li> |
|
||||||
{{end}} |
|
||||||
<li class="list-group-item"><i class="fa fa-clock-o"></i>Joined on {{DateFormat .Owner.Created "M d, Y"}}</li> |
|
||||||
<!-- <hr> --> |
|
||||||
<!-- <li class="list-group-item" style="padding-top: 5px;"> |
|
||||||
<div class="profile-rel"> |
|
||||||
<div class="col-md-6 followers"> |
|
||||||
<strong>123</strong> |
|
||||||
<p>followers</p> |
|
||||||
</div> |
|
||||||
<div class="col-md-6 following"> |
|
||||||
<strong>123</strong> |
|
||||||
<p>following</p> |
|
||||||
</div> |
|
||||||
</div> |
|
||||||
</li> |
</li> |
||||||
<hr> --> |
|
||||||
</ul> |
</ul> |
||||||
</div> |
<div class="tab-content"> |
||||||
</div> |
{{if eq .TabName "activity"}} |
||||||
<div id="user-activity" class="col-md-9"> |
<div class="tab-pane active" id="dashboard-news"> |
||||||
<ul class="nav nav-tabs" id="user-act-tabs"> |
<br> |
||||||
<li{{if not .TabName}} class="active"{{end}}><a href="{{.Owner.HomeLink}}"><i class="fa fa-gittip"></i>Repositories</a></li> |
{{template "user/dashboard/feeds" .}} |
||||||
<li{{if eq .TabName "activity"}} class="active"{{end}}><a href="{{.Owner.HomeLink}}?tab=activity"><i class="fa fa-rss"></i>Public Activity</a></li> |
</div> |
||||||
</ul> |
|
||||||
<div class="tab-content"> |
|
||||||
{{if eq .TabName "activity"}} |
|
||||||
<div class="tab-pane active"> |
|
||||||
<ul class="list-unstyled activity-list"> |
|
||||||
{{range .Feeds}} |
|
||||||
<li> |
|
||||||
<i class="icon fa fa-{{ActionIcon .GetOpType}}"></i> |
|
||||||
<div class="info"><span class="meta">{{TimeSince .Created $.Lang}}</span><br>{{ActionDesc . | str2html}}</div> |
|
||||||
<span class="clearfix"></span> |
|
||||||
</li> |
|
||||||
{{else}} |
{{else}} |
||||||
<li>No public activity yet.</li> |
<div class="tab-pane active"> |
||||||
{{end}} |
<div id="org-repo-list"> |
||||||
</ul> |
{{range .Repos}} |
||||||
</div> |
{{if not .IsPrivate}} |
||||||
{{else}} |
<div class="org-repo-item"> |
||||||
<div class="tab-pane active"> |
<ul class="org-repo-status right"> |
||||||
<ul class="list-unstyled repo-list"> |
<li><i class="octicon octicon-star"></i> {{.NumStars}}</li> |
||||||
{{range .Repos}} |
<li><i class="octicon octicon-git-branch"></i> {{.NumForks}}</li> |
||||||
<li> |
</ul> |
||||||
<div class="meta pull-right"><!-- <i class="fa fa-star"></i> {{.NumStars}} --> <i class="fa fa-code-fork"></i> {{.NumForks}}</div> |
<h2><a href="{{AppSubUrl}}/{{$.Owner.Name}}/{{.Name}}">{{.Name}}</a></h2> |
||||||
<h4> |
<p class="org-repo-description">{{.Description}}</p> |
||||||
<a href="{{AppSubUrl}}/{{$.Owner.Name}}/{{.Name}}">{{.Name}}{{if .IsPrivate}} <span class="label label-default">Private</span>{{end}}</a> |
<p class="org-repo-updated">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Updated $.i18n.Lang}}</p> |
||||||
</h4> |
</div> |
||||||
<p class="desc">{{.Description}}</p> |
{{end}} |
||||||
<div class="info">Last updated {{TimeSince .Updated $.Lang}}</div> |
{{end}} |
||||||
</li> |
</div> |
||||||
|
</div> |
||||||
{{end}} |
{{end}} |
||||||
</ul> |
|
||||||
</div> |
</div> |
||||||
{{end}} |
|
||||||
</div> |
</div> |
||||||
</div> |
</div> |
||||||
</div> |
</div> |
||||||
{{template "base/footer" .}} |
{{template "ng/base/footer" .}} |
||||||
|
Loading…
Reference in new issue