Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_groups.html.haml « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ddf4427080287ae2a60c9337ab6c0a9a9f772de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.panel.panel-default
  .panel-heading.clearfix
    .input-group
      = search_field_tag :filter_group, nil, placeholder: 'Filter by name', class: 'dash-filter form-control'
      - if current_user.can_create_group?
        .input-group-addon
          = link_to new_group_path, class: "" do
            %strong 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
          .dash-project-avatar
            = image_tag group_icon(group.path), class: "avatar s40"
          %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.