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: ba8d3029eaf4f5949d6f832961dc092ba6b712f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.ui-box
  %h5.title
    Groups
    %small
      (#{groups.count})
    - if current_user.can_create_group?
      %span.pull-right
        = link_to new_group_path, class: "btn btn-tiny info" do
          %i.icon-plus
          New Group
  %ul.well-list
    - groups.each do |group|
      %li
        = link_to group_path(id: group.path), class: dom_class(group) do
          %strong.well-title= truncate(group.name, length: 35)
        %span.pull-right.light
          - if group.owner == current_user
            %i.icon-wrench