diff options
Diffstat (limited to 'templates/user')
-rw-r--r-- | templates/user/profile.tmpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/user/profile.tmpl b/templates/user/profile.tmpl index 6170c6d130..833de90b8c 100644 --- a/templates/user/profile.tmpl +++ b/templates/user/profile.tmpl @@ -69,11 +69,15 @@ */}} {{if and .Orgs .HasOrgsVisible}} <li> + <ul class="user-orgs"> {{range .Orgs}} {{if (or .Visibility.IsPublic (and ($.SignedUser) (or .Visibility.IsLimited (and (.IsUserPartOfOrg $.SignedUserID) .Visibility.IsPrivate) ($.IsAdmin))))}} - <a href="{{.HomeLink}}"><img class="ui mini image poping up" src="{{.RelAvatarLink}}" data-content="{{.Name}}" data-position="top center" data-variation="tiny inverted"></a> + <li> + <a href="{{.HomeLink}}"><img class="ui image poping up" src="{{.RelAvatarLink}}" data-content="{{.Name}}" data-position="top center" data-variation="tiny inverted"></a> + </li> {{end}} {{end}} + </ul> </li> {{end}} {{if and .IsSigned (ne .SignedUserName .Owner.Name)}} |