Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « branches « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e2dc2d2710307bd30b3dc4d07d9719c38c1264b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
- page_title "Branches"
= render "projects/commits/head"
.gray-content-block
  .pull-right
    - if can? current_user, :push_code, @project
      = link_to new_namespace_project_branch_path(@project.namespace, @project), class: 'btn btn-create' do
        %i.fa.fa-add-sign
        New branch
       
    .dropdown.inline
      %button.dropdown-toggle.btn{type: 'button', 'data-toggle' => 'dropdown'}
        %span.light sort:
        - if @sort.present?
          = @sort.humanize
        - else
          Name
        %b.caret
      %ul.dropdown-menu
        %li
          = link_to namespace_project_branches_path(sort: nil) do
            Name
          = 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
  .oneline
    Protected branches can be managed in project settings
- unless @branches.empty?
  %ul.content-list.all-branches
    - @branches.each do |branch|
      = render "projects/branches/branch", branch: branch
  = paginate @branches, theme: 'gitlab'