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

18 lines
368 B
Plaintext
Raw Normal View History

2012-06-20 19:08:18 +02:00
= render "commits/commit_box"
2013-01-30 15:40:43 +01:00
%p.pull-right.cgray
This commit has
%span.cgreen #{@commit.stats.additions} additions
and
%span.cred #{@commit.stats.deletions} deletions
= render "commits/diffs", diffs: @commit.diffs
2012-12-02 20:43:39 +01:00
= render "notes/notes_with_form"
:javascript
$(function(){
$('.files .file').each(function(){
new CommitFile(this);
});
});