2016-06-16 23:09:34 +05:30
|
|
|
- @no_container = true
|
2015-09-11 14:41:01 +05:30
|
|
|
- page_title "Branches"
|
2014-09-02 18:07:02 +05:30
|
|
|
= render "projects/commits/head"
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
%div{ class: container_class }
|
2016-06-16 23:09:34 +05:30
|
|
|
.top-area
|
|
|
|
.nav-text
|
|
|
|
Protected branches can be managed in project settings
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
.nav-controls
|
|
|
|
= form_tag(filter_branches_path, method: :get) do
|
|
|
|
= search_field_tag :search, params[:search], { placeholder: 'Filter by branch name', id: 'branch-search', class: 'form-control search-text-input input-short', spellcheck: false }
|
|
|
|
|
|
|
|
.dropdown.inline
|
|
|
|
%button.dropdown-toggle.btn{type: 'button', 'data-toggle' => 'dropdown'}
|
|
|
|
%span.light
|
|
|
|
= projects_sort_options_hash[@sort]
|
2016-11-03 12:29:30 +05:30
|
|
|
= icon('caret-down')
|
2016-09-13 17:45:13 +05:30
|
|
|
%ul.dropdown-menu.dropdown-menu-align-right
|
|
|
|
%li
|
|
|
|
= link_to filter_branches_path(sort: sort_value_name) do
|
|
|
|
= sort_title_name
|
|
|
|
= link_to filter_branches_path(sort: sort_value_recently_updated) do
|
|
|
|
= sort_title_recently_updated
|
|
|
|
= link_to filter_branches_path(sort: sort_value_oldest_updated) do
|
|
|
|
= sort_title_oldest_updated
|
|
|
|
|
|
|
|
- if can? current_user, :push_code, @project
|
2016-08-24 12:49:21 +05:30
|
|
|
= link_to new_namespace_project_branch_path(@project.namespace, @project), class: 'btn btn-create' do
|
|
|
|
New branch
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
- if @branches.any?
|
2016-06-16 23:09:34 +05:30
|
|
|
%ul.content-list.all-branches
|
|
|
|
- @branches.each do |branch|
|
|
|
|
= render "projects/branches/branch", branch: branch
|
|
|
|
= paginate @branches, theme: 'gitlab'
|
2016-08-24 12:49:21 +05:30
|
|
|
- else
|
|
|
|
.nothing-here-block No branches to show
|