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

18 lines
301 B
Plaintext
Raw Normal View History

2012-02-06 21:32:04 +01:00
= render "head"
2011-11-01 21:11:24 +01:00
- if @path.present?
2012-01-27 00:46:32 +01:00
%ul.breadcrumb
= commits_breadcrumbs
2011-11-01 21:11:24 +01:00
%div{id: dom_id(@project)}
#commits-list= render "commits"
2011-11-05 13:26:06 +01:00
.clear
.loading{ style: "display:none;"}
2011-11-05 13:26:06 +01:00
- if @commits.count == @limit
:javascript
$(function(){
2012-02-12 22:52:27 +01:00
CommitsList.init("#{@ref}", #{@limit});
});