OSDN Git Service

Fix protected branches page UI
[wvm/gitlab.git] / app / views / projects / protected_branches / index.html.haml
1 = render "projects/commits/head"
2 .row
3   .col-md-3
4     = render "projects/branches/filter"
5   .col-md-9
6     .bs-callout.bs-callout-info
7       %p Protected branches designed to prevent push for all except #{link_to "masters", help_permissions_path, class: "vlink"}.
8       %p This ability allows:
9       %ul
10         %li keep stable branches secured
11         %li forced code review before merge to protected branches
12       %p Read more about project permissions #{link_to "here", help_permissions_path, class: "underlined_link"}
13
14     - if can? current_user, :admin_project, @project
15       = form_for [@project, @protected_branch], html: { class: 'form-horizontal' } do |f|
16         -if @protected_branch.errors.any?
17           .alert.alert-danger
18             %ul
19               - @protected_branch.errors.full_messages.each do |msg|
20                 %li= msg
21
22         .form-group
23           = f.label :name, "Branch", class: 'control-label'
24           .col-sm-10
25             = f.select(:name, @project.open_branches.map { |br| [br.name, br.name] } , {include_blank: "Select branch"}, {class: "select2"})
26         .form-actions
27           = f.submit 'Protect', class: "btn-create btn"
28     - unless @branches.empty?
29       %h5 Already Protected:
30       %ul.bordered-list.protected-branches-list
31         - @branches.each do |branch|
32           %li
33             %h4
34               = link_to project_commits_path(@project, branch.name) do
35                 %strong= branch.name
36                 - if @project.root_ref?(branch.name)
37                   %span.label.label-info default
38                 %span.label.label-success
39                   %i.icon-lock
40               .pull-right
41                 - if can? current_user, :admin_project, @project
42                   = link_to 'Unprotect', [@project, branch], data: { confirm: 'Branch will be writable for developers. Are you sure?' }, method: :delete, class: "btn btn-remove btn-small"
43
44             - if commit = branch.commit
45               = link_to project_commit_path(@project, commit.id), class: 'commit_short_id' do
46                 = commit.short_id
47               %span.light
48                 = gfm escape_once(truncate(commit.title, length: 40))
49               #{time_ago_with_tooltip(commit.committed_date)}
50             - else
51               (branch was removed from repository)