2013-01-24 11:43:09 +02:00
|
|
|
.ui-box
|
2013-01-04 23:35:31 +02:00
|
|
|
%h5.title
|
2012-10-02 19:37:53 +03:00
|
|
|
Groups
|
2013-04-01 21:37:39 +03:00
|
|
|
%span.light
|
2012-10-02 19:37:53 +03:00
|
|
|
(#{groups.count})
|
2012-10-09 09:46:20 +03:00
|
|
|
- if current_user.can_create_group?
|
2013-01-30 16:40:43 +02:00
|
|
|
%span.pull-right
|
2013-04-01 21:37:39 +03:00
|
|
|
= link_to new_group_path, class: "btn btn-small" do
|
2012-10-09 09:46:20 +03:00
|
|
|
%i.icon-plus
|
|
|
|
New Group
|
2012-12-18 06:14:05 +03:00
|
|
|
%ul.well-list
|
2012-10-02 19:37:53 +03:00
|
|
|
- groups.each do |group|
|
2012-12-18 06:14:05 +03:00
|
|
|
%li
|
2012-11-23 21:31:09 +03:00
|
|
|
= link_to group_path(id: group.path), class: dom_class(group) do
|
2013-03-14 13:12:11 +02:00
|
|
|
%strong.well-title
|
|
|
|
= truncate(group.name, length: 35)
|
|
|
|
%span.arrow
|
|
|
|
→
|
|
|
|
%span.last_activity
|
|
|
|
%strong Owner:
|
|
|
|
%span= group.owner_name
|
2013-03-10 11:57:14 +02:00
|
|
|
- if groups.blank?
|
|
|
|
%li
|
|
|
|
%h3.nothing_here_message You have no groups yet.
|