summaryrefslogtreecommitdiff
path: root/app/views/dashboard/_groups.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/dashboard/_groups.html.haml')
-rw-r--r--app/views/dashboard/_groups.html.haml19
1 files changed, 0 insertions, 19 deletions
diff --git a/app/views/dashboard/_groups.html.haml b/app/views/dashboard/_groups.html.haml
deleted file mode 100644
index 5460cf56f22..00000000000
--- a/app/views/dashboard/_groups.html.haml
+++ /dev/null
@@ -1,19 +0,0 @@
-.panel.panel-default
- .panel-heading.clearfix
- = search_field_tag :filter_group, nil, placeholder: 'Filter by name', class: 'dash-filter form-control'
- - if current_user.can_create_group?
- = link_to new_group_path, class: "btn btn-new pull-right" do
- %i.fa.fa-plus
- New group
- %ul.well-list.dash-list
- - groups.each do |group|
- %li.group-row
- = link_to group_path(id: group.path), class: dom_class(group) do
- = image_tag group_icon(group.path), class: "avatar s24"
- %span.group-name.filter-title
- = truncate(group.name, length: 35)
- %span.arrow
- %i.fa.fa-angle-right
- - if groups.blank?
- %li
- .nothing-here-block You have no groups yet.