mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-28 05:56:37 +10:00
25 lines
497 B
Plaintext
25 lines
497 B
Plaintext
- last_commit = project.last_commit
|
|
%tr
|
|
%td
|
|
= link_to [:ci, project] do
|
|
= project.name
|
|
%td
|
|
- if last_commit
|
|
= ci_status_with_icon(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
|