index.html.haml 1.5 KB
Newer Older
A
Annabel Dunstone 已提交
1
- @no_container = true
D
Douwe Maan 已提交
2
- page_title "Branches"
3
= render "projects/commits/head"
A
Annabel Dunstone 已提交
4

V
Valery Sizov 已提交
5
%div{ class: container_class }
6 7 8 9 10 11
  .top-area
    .nav-text
      Protected branches can be managed in project settings

    - if can? current_user, :push_code, @project
      .nav-controls
12 13
        = 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 }
14 15 16
        .dropdown.inline
          %button.dropdown-toggle.btn{type: 'button', 'data-toggle' => 'dropdown'}
            %span.light
17 18
            - if params[:sort].present?
              = params[:sort].humanize
19
            - else
A
Annabel Dunstone 已提交
20
              Name
21 22 23
            %b.caret
          %ul.dropdown-menu.dropdown-menu-align-right
            %li
24 25 26
              = link_to filter_branches_path(sort: nil) do
                = sort_title_name
              = link_to filter_branches_path(sort: 'recently_updated') do
27
                = sort_title_recently_updated
28
              = link_to filter_branches_path(sort: 'last_updated') do
29
                = sort_title_oldest_updated
30 31
        = link_to new_namespace_project_branch_path(@project.namespace, @project), class: 'btn btn-create' do
          New branch
V
Valery Sizov 已提交
32
  - if @branches.any?
A
Annabel Dunstone 已提交
33 34 35 36
    %ul.content-list.all-branches
      - @branches.each do |branch|
        = render "projects/branches/branch", branch: branch
    = paginate @branches, theme: 'gitlab'
37 38
  - else
    .nothing-here-block No branches to show