summaryrefslogtreecommitdiff
path: root/app/views/ci/projects/_project.html.haml
blob: b3ad47ce432543556afdf5e69fd74e8d231ca326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- last_commit = project.last_commit
%tr.alert{class: commit_status_alert_class(last_commit) }
  %td
    = link_to [:ci, project] do
      %strong= project.name
  %td
    - if last_commit
      #{last_commit.status} (#{commit_link(last_commit)})
      - if project.last_commit_date
        = time_ago_in_words project.last_commit_date
        ago
    - else
      No builds yet
  %td
    - if project.public
      %i.fa.fa-globe
      Public
    - else
      %i.fa.fa-lock
      Private
  %td
    = project.commits.count