summaryrefslogtreecommitdiff
path: root/app/views/events/_event_push.atom.haml
blob: bc1d32607e46e1760c4f9f7326491180cae7c592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%div{ xmlns: "http://www.w3.org/1999/xhtml" }
  %p
    %strong= event.author_name
    = link_to "(#{truncate_sha(event.commit_id)})", project_commit_path(event.project, event.commit_id)
    %i
      at
      = event.created_at.to_s(:short)
  - unless event.rm_ref?
    .blockquote= markdown(escape_once(event.commit_title), pipeline: :atom, project: event.project, author: event.author)
    - if event.commits_count > 1
      %p
        %i
          \... and
          = pluralize(event.commits_count - 1, "more commit")