2015-12-21 07:24:11 -05:00
|
|
|
{{with .Owner}}
|
|
|
|
<div class="ui container">
|
2016-08-05 15:12:54 -04:00
|
|
|
<img class="ui avatar image" src="{{.RelAvatarLink}}">
|
2015-12-21 07:24:11 -05:00
|
|
|
<span class="header name">
|
|
|
|
<a href="{{.HomeLink}}">{{.Name}}</a>
|
|
|
|
{{with .FullName}}({{.}}){{end}}
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<div class="ui right">
|
|
|
|
{{if or $.PageIsFollowers $.PageIsFollowing}}
|
|
|
|
{{if and $.IsSigned (ne $.SignedUserName .Name)}}
|
|
|
|
<div class="follow">
|
2016-07-23 13:08:22 -04:00
|
|
|
{{if $.SignedUser.IsFollowing .ID}}
|
2015-12-21 07:24:11 -05:00
|
|
|
<a class="ui small basic red button" href="{{.HomeLink}}/action/unfollow?redirect_to={{$.Link}}"><i class="octicon octicon-person"></i> {{$.i18n.Tr "user.unfollow"}}</a>
|
|
|
|
{{else}}
|
|
|
|
<a class="ui small basic green button" href="{{.HomeLink}}/action/follow?redirect_to={{$.Link}}"><i class="octicon octicon-person"></i> {{$.i18n.Tr "user.follow"}}</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2016-07-23 13:08:22 -04:00
|
|
|
<div class="ui divider"></div>
|