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

projects.html.haml « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ac90593c3a75e1b04092f126d9cb90b1968d55b (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
%h3.page-title My Projects
%p.light
  All projects you have access to are listed here. Public projects are not included here unless you are a member
%hr
.row
  .span3
    %ul.nav.nav-pills.nav-stacked
      = nav_tab :scope, nil do
        = link_to projects_dashboard_path do
          All
          %span.pull-right
            = current_user.authorized_projects.count
      = nav_tab :scope, 'personal' do
        = link_to projects_dashboard_path(scope: 'personal') do
          Personal
          %span.pull-right
            = current_user.personal_projects.count
      = nav_tab :scope, 'joined' do
        = link_to projects_dashboard_path(scope: 'joined') do
          Joined
          %span.pull-right
            = current_user.authorized_projects.joined(current_user).count
      = nav_tab :scope, 'owned' do
        = link_to projects_dashboard_path(scope: 'owned') do
          Owned
          %span.pull-right
            = current_user.owned_projects.count


    - if @groups.present?
      %fieldset
        %legend Groups
        %ul.bordered-list
          - @groups.each do |group|
            %li{ class: (group.name == params[:group]) ? 'active' : 'light' }
              = link_to projects_dashboard_path(group: group.name) do
                %i.icon-folder-close-alt
                = group.name
                %small.pull-right
                  = group.projects.count



    - if @labels.present?
      %fieldset
        %legend Labels
        %ul.bordered-list
          - @labels.each do |label|
            %li{ class: (label.name == params[:label]) ? 'active' : 'light' }
              = link_to projects_dashboard_path(scope: params[:scope], label: label.name) do
                %i.icon-tag
                = label.name

  .span9
    %ul.bordered-list.my-projects.top-list
      - @projects.each do |project|
        %li.my-project-row
          %h4.project-title
            = link_to project_path(project), class: dom_class(project) do
              = project.name_with_namespace
            - unless project.private?
              %small.access-icon
                = visibility_level_icon(project.visibility_level)
                = visibility_level_label(project.visibility_level)

            - if current_user.can_leave_project?(project)
              .pull-right
                = link_to leave_project_team_members_path(project), confirm: "Leave project?", method: :delete, remote: true, class: "btn-tiny btn remove-row", title: 'Leave project' do
                  %i.icon-signout
                  Leave

            - if project.forked_from_project
              %small.pull-right
                %i.icon-code-fork
                Forked from:
                = link_to project.forked_from_project.name_with_namespace, project_path(project.forked_from_project)
          .project-info
            .pull-right
              - project.labels.each do |label|
                %span.label.label-info
                  %i.icon-tag
                  = label.name
            - if project.description.present?
              %p= truncate project.description, length: 100
            .last-activity
              %span.light Last activity:
              %span.date= project_last_activity(project)


        - if @projects.blank?
          %li
            %h3.nothing_here_message There are no projects here.
    .bottom
      = paginate @projects, theme: "gitlab"