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: 69c64d6c71d8b04fbcf8628ec7b29d049f9072b0 (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
%h3.page-title
  My Projects

  = link_to new_project_path, class: "btn btn-new pull-right" do
    %i.fa.fa-plus
    New Project

%p.light
  All projects you have access to are listed here. Public projects are not included here unless you are a member
%hr
.side-filters
  = render "projects_filter"
.dash-projects
  %ul.bordered-list.my-projects.top-list
    - @projects.each do |project|
      %li.my-project-row
        %h4.project-title
          .pull-left
            = project_icon(project.to_param, alt: '', class: 'avatar project-avatar s60')
          .project-access-icon
            = visibility_level_icon(project.visibility_level)
          = link_to project_path(project), class: dom_class(project) do
            %strong= project.name_with_namespace

          - if project.forked_from_project
             
            %small
              %i.fa.fa-code-fork
              Forked from:
              = link_to project.forked_from_project.name_with_namespace, project_path(project.forked_from_project)

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

        .project-info
          .pull-right
            - if project.archived?
              %span.label
                %i.fa.fa-archive
                Archived
            - project.tags.each do |tag|
              %span.label.label-info
                %i.fa.fa-tag
                = tag.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
          .nothing-here-block There are no projects here.
  .bottom
    = paginate @projects, theme: "gitlab"