index.html.haml 680 Bytes
- content_for(:body_class, "project-page commits-page")

-#%a.right.button{:href => "#"} Download
-#-if can? current_user, :admin_project, @project
  %a.right.button.blue{:href => "#"} EDIT
%h2.icon
  %span
  %d
    = link_to project_commits_path(@project) do
      = @project.name
    - if params[:path]
      \/
      %a{:href => "#"}= params[:path].split("/").join(" / ")

.right= render :partial => "projects/refs", :locals => { :destination => :commits }

%div{:id => dom_id(@project)}
  #commits_list= render "commits"
.clear
.loading{ :style => "display:none;"}
  %center= image_tag "ajax-loader.gif"

:javascript
  $(function(){
    CommitsList.init("#{@ref}", 20);
  });