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

index.html.haml « teams « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f2f4763f76e4a2cd71ae6d346193177bbc4636a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
%h3.page_title
  Teams
  %small
    simple Teams description

  = link_to 'New Team', new_admin_team_path, class: "btn btn-small pull-right"
  %br

= form_tag admin_teams_path, method: :get, class: 'form-inline' do
  = text_field_tag :name, params[:name], class: "xlarge"
  = submit_tag "Search", class: "btn submit btn-primary"

%table
  %thead
    %tr
      %th
        Name
        %i.icon-sort-down
      %th Path
      %th Projects
      %th Members
      %th Owner
      %th.cred Danger Zone!

  - @teams.each do |team|
    %tr
      %td
        %strong= link_to team.name, admin_team_path(team)
      %td= team.path
      %td= team.projects.count
      %td= team.members.count
      %td
        = link_to team.owner.name, admin_user_path(team.owner_id)
      %td.bgred
        = link_to 'Rename', edit_admin_team_path(team), id: "edit_#{dom_id(team)}", class: "btn btn-small"
        = link_to 'Destroy', admin_team_path(team), confirm: "REMOVE #{team.name}? Are you sure?", method: :delete, class: "btn btn-small btn-remove"

= paginate @teams, theme: "admin"