debian-mirror-gitlab/app/views/projects/repositories/_feed.html.haml

19 lines
598 B
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
- commit = update
%tr
%td
2017-09-10 17:25:29 +05:30
= link_to project_commits_path(@project, commit.head.name) do
2014-09-02 18:07:02 +05:30
%strong
= commit.head.name
- if @project.root_ref?(commit.head.name)
%span.label default
%td
%div
2017-09-10 17:25:29 +05:30
= link_to project_commits_path(@project, commit.id) do
2014-09-02 18:07:02 +05:30
%code= commit.short_id
2018-03-27 19:54:05 +05:30
= image_tag avatar_icon_for_email(commit.author_email), class: "", width: 16, alt: ''
2016-11-03 12:29:30 +05:30
= markdown(truncate(commit.title, length: 40), pipeline: :single_line, author: commit.author)
2014-09-02 18:07:02 +05:30
%td
2018-11-08 19:23:39 +05:30
%span.float-right.cgray
2014-09-02 18:07:02 +05:30
= time_ago_with_tooltip(commit.committed_date)