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

27 lines
680 B
Plaintext
Raw Normal View History

2011-11-01 11:48:26 +01:00
- content_for(:body_class, "project-page commits-page")
2011-11-01 21:11:24 +01:00
-#%a.right.button{:href => "#"} Download
-#-if can? current_user, :admin_project, @project
%a.right.button.blue{:href => "#"} EDIT
%h2.icon
%span
%d
2011-11-15 09:34:30 +01:00
= link_to project_commits_path(@project) do
2011-11-03 17:28:33 +01:00
= @project.name
- if params[:path]
\/
2011-11-01 21:11:24 +01:00
%a{:href => "#"}= params[:path].split("/").join(" / ")
2011-11-16 18:19:18 +01:00
.right= render :partial => "projects/refs", :locals => { :destination => :commits }
2011-11-01 21:11:24 +01:00
%div{:id => dom_id(@project)}
2011-11-05 13:26:06 +01:00
#commits_list= render "commits"
.clear
.loading{ :style => "display:none;"}
%center= image_tag "ajax-loader.gif"
:javascript
$(function(){
CommitsList.init("#{@ref}", 20);
});