2013-01-24 10:43:09 +01:00
|
|
|
.ui-box
|
2013-01-04 22:35:31 +01:00
|
|
|
%h5.title
|
2012-10-02 18:37:53 +02:00
|
|
|
Groups
|
|
|
|
%small
|
|
|
|
(#{groups.count})
|
2012-10-09 08:46:20 +02:00
|
|
|
- if current_user.can_create_group?
|
|
|
|
%span.right
|
2013-01-24 16:47:09 +01:00
|
|
|
= link_to new_group_path, class: "btn very_small info" do
|
2012-10-09 08:46:20 +02:00
|
|
|
%i.icon-plus
|
|
|
|
New Group
|
2012-12-18 04:14:05 +01:00
|
|
|
%ul.well-list
|
2012-10-02 18:37:53 +02:00
|
|
|
- groups.each do |group|
|
2012-12-18 04:14:05 +01:00
|
|
|
%li
|
2012-11-23 19:31:09 +01:00
|
|
|
= link_to group_path(id: group.path), class: dom_class(group) do
|
2012-12-18 04:14:05 +01:00
|
|
|
%strong.well-title= truncate(group.name, length: 35)
|
2013-01-24 10:43:09 +01:00
|
|
|
%span.right.light
|
|
|
|
- if group.owner == current_user
|
|
|
|
%i.icon-wrench
|