summaryrefslogtreecommitdiff
path: root/app/views/ci/projects/_project.html.haml
blob: 869747b6eb193fab1c37d8daeeb55d16041d1874 (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
- if project.gitlab_ci_project
  - ci_project = project.gitlab_ci_project
  - last_commit = ci_project.last_commit
  %tr.alert{class: commit_status_alert_class(last_commit) }
    %td
      = link_to [:ci, ci_project] do
        = ci_project.name
    %td
      - if last_commit
        #{last_commit.status} (#{commit_link(last_commit)})
        - if ci_project.last_commit_date
          = time_ago_in_words ci_project.last_commit_date
          ago
      - else
        No builds yet
    %td
      - if ci_project.public
        %i.fa.fa-globe
        Public
      - else
        %i.fa.fa-lock
        Private
    %td
      = ci_project.commits.count
- else
  %tr.light
    %td
      = project.name_with_namespace
    %td
      %small Not added to CI
    %td
    %td
      = form_tag ci_projects_path do
        = hidden_field_tag :project, project.to_json(methods: [:name_with_namespace, :path_with_namespace, :ssh_url_to_repo])
        = submit_tag 'Add project to CI', class: 'btn btn-default btn-sm'