summaryrefslogtreecommitdiff
path: root/app/views/repositories/_feed.html.haml
blob: a9b9fd0069e1c27e8b98b5af41da2ea994aaeb1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- commit = update
- commit = CommitDecorator.new(commit)
%tr
  %td
    = link_to project_commits_path(@project, :ref => commit.head.name) do
      %strong
        = commit.head.name
      - if commit.head.name == @project.root_ref
        %span.label default

  %td
    %div
      = link_to project_commits_path(@project, commit.id) do
        %code= commit.short_id
      = image_tag gravatar_icon(commit.author_email), :class => "", :width => 16
      = gfm truncate(commit.title, :length => 40)
  %td
    %span.right.cgray
      = time_ago_in_words(commit.committed_date)
      ago