2016-06-03 14:09:45 -04:00
- @no_container = true
2015-04-30 13:06:18 -04:00
- page_title "Branches"
2013-07-16 15:19:07 -04:00
= render "projects/commits/head"
2016-06-03 14:09:45 -04:00
2016-06-30 09:01:26 -04:00
%div{ class: container_class }
2016-06-08 11:23:45 -04:00
.top-area
.nav-text
Protected branches can be managed in project settings
2016-07-24 16:13:46 -04:00
.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
2016-07-26 23:56:17 -04:00
= projects_sort_options_hash[@sort]
2016-08-23 12:02:52 -04:00
= icon('caret-down')
2016-07-24 16:13:46 -04:00
%ul.dropdown-menu.dropdown-menu-align-right
%li
2016-07-26 23:56:17 -04:00
= link_to filter_branches_path(sort: sort_value_name) do
2016-07-24 16:13:46 -04:00
= sort_title_name
2016-07-26 23:56:17 -04:00
= link_to filter_branches_path(sort: sort_value_recently_updated) do
2016-07-24 16:13:46 -04:00
= sort_title_recently_updated
2016-07-26 23:56:17 -04:00
= link_to filter_branches_path(sort: sort_value_oldest_updated) do
2016-07-24 16:13:46 -04:00
= sort_title_oldest_updated
- if can? current_user, :push_code, @project
2016-09-21 10:15:12 -04:00
= link_to namespace_project_merged_branches_path(@project.namespace, @project), class: 'btn btn-inverted btn-remove has-tooltip', title: "Delete all branches that are merged into '#{@project.repository.root_ref}'", method: :delete, data: { confirm: "Deleting the merged branches cannot be undone. Are you sure?", container: 'body' } do
Delete merged branches
2016-07-07 12:19:21 -04:00
= link_to new_namespace_project_branch_path(@project.namespace, @project), class: 'btn btn-create' do
New branch
2016-07-24 16:13:46 -04:00
2016-06-30 09:01:26 -04:00
- if @branches.any?
2016-06-03 14:09:45 -04:00
%ul.content-list.all-branches
- @branches.each do |branch|
= render "projects/branches/branch", branch: branch
= paginate @branches, theme: 'gitlab'
2016-07-07 12:19:21 -04:00
- else
.nothing-here-block No branches to show