24 lines
1.3 KiB
Text
24 lines
1.3 KiB
Text
|
- url = namespace_project_protected_branch_path(@project.namespace, @project, protected_branch)
|
||
|
%tr
|
||
|
%td
|
||
|
= protected_branch.name
|
||
|
- if @project.root_ref?(protected_branch.name)
|
||
|
%span.label.label-info.prepend-left-5 default
|
||
|
%td
|
||
|
- if protected_branch.wildcard?
|
||
|
- matching_branches = protected_branch.matching(repository.branches)
|
||
|
= link_to pluralize(matching_branches.count, "matching branch"), namespace_project_protected_branch_path(@project.namespace, @project, protected_branch)
|
||
|
- else
|
||
|
- if commit = protected_branch.commit
|
||
|
= link_to(commit.short_id, namespace_project_commit_path(@project.namespace, @project, commit.id), class: 'commit_short_id')
|
||
|
= time_ago_with_tooltip(commit.committed_date)
|
||
|
- else
|
||
|
(branch was removed from repository)
|
||
|
%td
|
||
|
= check_box_tag("developers_can_push", protected_branch.id, protected_branch.developers_can_push, data: { url: url })
|
||
|
%td
|
||
|
= check_box_tag("developers_can_merge", protected_branch.id, protected_branch.developers_can_merge, data: { url: url })
|
||
|
- if can_admin_project
|
||
|
%td
|
||
|
= link_to 'Unprotect', [@project.namespace.becomes(Namespace), @project, protected_branch], data: { confirm: 'Branch will be writable for developers. Are you sure?' }, method: :delete, class: "btn btn-warning btn-sm pull-right"
|