gitlabhq/app/views/commits/show.html.haml

31 lines
644 B
Plaintext
Raw Normal View History

2011-11-21 08:16:10 +01:00
- content_for(:body_class, "project-page commits-page")
%h2.icon
%span
%d
= "#{truncate(@commit.safe_message, :length => 50)}"
.right
= link_to 'Browse Code', tree_project_ref_path(@project, @commit.id), :class => "browse-code button yellow"
2011-10-08 23:36:38 +02:00
%table.round-borders
2011-11-21 08:16:10 +01:00
%thead
%th{:colspan => 2} Details
2011-10-08 23:36:38 +02:00
%tr
%td ID
%td= @commit.id
%tr
%td Author
%td= @commit.author_name
2011-10-08 23:36:38 +02:00
%tr
%td Commited Date
2011-11-30 20:23:17 +01:00
%td= @commit.created_at.stamp("Aug 21, 2011, 11:15pm")
2011-10-08 23:36:38 +02:00
%tr
%td Message
2011-10-31 14:34:22 +01:00
%td
%pre.commit_message
= preserve @commit.safe_message
2011-10-08 23:36:38 +02:00
.clear
2011-11-05 13:45:52 +01:00
%br
2011-10-08 23:36:38 +02:00
2011-11-05 13:45:52 +01:00
= render "commits/diff"
= render "notes/notes"