gitlabhq/app/views/dashboard/_groups.html.haml

21 lines
599 B
Plaintext
Raw Normal View History

2013-02-07 11:42:52 +01:00
.groups_box
2013-01-04 22:35:31 +01:00
%h5.title
2012-10-02 18:37:53 +02:00
Groups
%small
(#{groups.count})
- if current_user.can_create_group?
2013-01-30 15:40:43 +01:00
%span.pull-right
2013-01-29 21:29:21 +01:00
= link_to new_group_path, class: "btn btn-tiny info" do
%i.icon-plus
New Group
%ul.well-list
2012-10-02 18:37:53 +02:00
- groups.each do |group|
%li
2012-11-23 19:31:09 +01:00
= link_to group_path(id: group.path), class: dom_class(group) do
%strong.well-title= truncate(group.name, length: 35)
2013-02-07 11:42:52 +01:00
%span.edit.light
- if group.owner == current_user
%i.icon-wrench
%span.description
%strong= group.description