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

25 lines
464 B
Text
Raw Normal View History

2012-02-06 22:32:04 +02:00
= render "head"
2011-11-01 22:11:24 +02:00
- if @path.present?
2012-01-27 01:46:32 +02:00
%ul.breadcrumb
%li
%span.arrow
2012-01-27 01:46:32 +02:00
= link_to project_commits_path(@project) do
= @project.name
%span.divider
2012-01-27 01:46:32 +02:00
\/
%li
%a{href: "#"}= @path.split("/").join(" / ")
2011-11-01 22:11:24 +02:00
%div{id: dom_id(@project)}
2011-11-05 14:26:06 +02:00
#commits_list= render "commits"
.clear
.loading{ style: "display:none;"}
2011-11-05 14:26:06 +02:00
- if @commits.count == @limit
:javascript
$(function(){
2012-02-12 23:52:27 +02:00
CommitsList.init("#{@ref}", #{@limit});
});