debian-mirror-gitlab/app/views/projects/_last_commit.html.haml

12 lines
652 B
Text
Raw Normal View History

2015-11-26 14:37:03 +05:30
.project-last-commit
2016-06-02 11:05:42 +05:30
- if commit.status
= link_to builds_namespace_project_commit_path(commit.project.namespace, commit.project, commit), class: "ci-status ci-#{commit.status}" do
= ci_icon_for_status(commit.status)
= ci_label_for_status(commit.status)
2015-11-26 14:37:03 +05:30
= link_to commit.short_id, namespace_project_commit_path(project.namespace, project, commit), class: "commit_short_id"
= link_to_gfm commit.title, namespace_project_commit_path(project.namespace, project, commit), class: "commit-row-message"
·
#{time_ago_with_tooltip(commit.committed_date, skip_js: true)} by
= commit_author_link(commit, avatar: true, size: 24)