retrospring/app/views/user/groups.html.haml

19 lines
466 B
Text
Raw Normal View History

2015-01-12 06:57:43 +01:00
.profile--header
.container.j2-page
.col-md-3.col-xs-12.col-sm-4
= render 'user/profile_info'
.hidden-xs= render 'shared/links'
.col-md-9.col-xs-12.col-sm-8
%h1.j2-lh.hidden-xs Groups
%h1.visible-xs Groups
%ul
- @groups.each do |group|
2015-01-12 07:08:06 +01:00
%li
- if group.private?
%i.fa.fa-lock
= group.display_name
2015-01-12 06:57:43 +01:00
.visible-xs= render 'shared/links'
2015-01-14 07:07:40 +01:00
- if user_signed_in?
= render 'user/modal_group_memberships'