debian-mirror-gitlab/app/views/projects/commits/show.html.haml

24 lines
638 B
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
= render "head"
.tree-ref-holder
= render 'shared/ref_switcher', destination: 'commits'
- if current_user && current_user.private_token
.commits-feed-holder.hidden-xs.hidden-sm
2015-04-26 12:48:37 +05:30
= link_to namespace_project_commits_path(@project.namespace, @project, @ref, {format: :atom, private_token: current_user.private_token}), title: "Feed", class: 'btn' do
%i.fa.fa-rss
2014-09-02 18:07:02 +05:30
Commits feed
%ul.breadcrumb.repo-breadcrumb
= commits_breadcrumbs
%div{id: dom_id(@project)}
2015-04-26 12:48:37 +05:30
#commits-list= render "commits", project: @project
2014-09-02 18:07:02 +05:30
.clear
= spinner
- if @commits.count == @limit
:javascript
CommitsList.init("#{@ref}", #{@limit});