2015-09-11 14:41:01 +05:30
|
|
|
- page_title "Branches"
|
2015-09-25 12:07:36 +05:30
|
|
|
= render "projects/commits/header_title"
|
2014-09-02 18:07:02 +05:30
|
|
|
= render "projects/commits/head"
|
2015-09-25 12:07:36 +05:30
|
|
|
.gray-content-block
|
2014-09-02 18:07:02 +05:30
|
|
|
.pull-right
|
|
|
|
- if can? current_user, :push_code, @project
|
2015-04-26 12:48:37 +05:30
|
|
|
= link_to new_namespace_project_branch_path(@project.namespace, @project), class: 'btn btn-create' do
|
2015-12-23 02:04:40 +05:30
|
|
|
= icon('plus')
|
2014-09-02 18:07:02 +05:30
|
|
|
New branch
|
|
|
|
|
|
|
|
.dropdown.inline
|
2015-04-26 12:48:37 +05:30
|
|
|
%button.dropdown-toggle.btn{type: 'button', 'data-toggle' => 'dropdown'}
|
2014-09-02 18:07:02 +05:30
|
|
|
%span.light sort:
|
|
|
|
- if @sort.present?
|
|
|
|
= @sort.humanize
|
|
|
|
- else
|
|
|
|
Name
|
|
|
|
%b.caret
|
|
|
|
%ul.dropdown-menu
|
|
|
|
%li
|
2015-04-26 12:48:37 +05:30
|
|
|
= link_to namespace_project_branches_path(sort: nil) do
|
2014-09-02 18:07:02 +05:30
|
|
|
Name
|
2015-04-26 12:48:37 +05:30
|
|
|
= link_to namespace_project_branches_path(sort: 'recently_updated') do
|
|
|
|
= sort_title_recently_updated
|
|
|
|
= link_to namespace_project_branches_path(sort: 'last_updated') do
|
|
|
|
= sort_title_oldest_updated
|
2015-09-25 12:07:36 +05:30
|
|
|
.oneline
|
|
|
|
Protected branches can be managed in project settings
|
2014-09-02 18:07:02 +05:30
|
|
|
- unless @branches.empty?
|
2015-09-25 12:07:36 +05:30
|
|
|
%ul.content-list.all-branches
|
2014-09-02 18:07:02 +05:30
|
|
|
- @branches.each do |branch|
|
|
|
|
= render "projects/branches/branch", branch: branch
|
|
|
|
= paginate @branches, theme: 'gitlab'
|