gitlab-org--gitlab-foss/app/views/projects/commits/show.html.haml

24 lines
638 B
Text
Raw Normal View History

2012-02-06 15:32:04 -05:00
= render "head"
2011-11-01 16:11:24 -04:00
.tree-ref-holder
= render 'shared/ref_switcher', destination: 'commits'
- if current_user && current_user.private_token
.commits-feed-holder.hidden-xs.hidden-sm
= link_to namespace_project_commits_path(@project.namespace, @project, @ref, {format: :atom, private_token: current_user.private_token}), title: "Feed", class: 'btn' do
2014-10-01 18:21:29 -04:00
%i.fa.fa-rss
Commits feed
%ul.breadcrumb.repo-breadcrumb
= commits_breadcrumbs
2011-11-01 16:11:24 -04:00
%div{id: dom_id(@project)}
#commits-list= render "commits", project: @project
2011-11-05 08:26:06 -04:00
.clear
= spinner
2011-11-05 08:26:06 -04:00
- if @commits.count == @limit
:javascript
CommitsList.init("#{@ref}", #{@limit});