debian-mirror-gitlab/app/views/protected_branches/shared/_protected_branch.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
1.3 KiB
Text
Raw Normal View History

2017-09-10 17:25:29 +05:30
- can_admin_project = can?(current_user, :admin_project, @project)
2022-10-11 01:57:18 +05:30
%tr.js-protected-branch-edit-form{ data: { url: namespace_project_protected_branch_path(@project.namespace, @project, protected_branch), testid: 'protected-branch' } }
2017-09-10 17:25:29 +05:30
%td
2018-11-08 19:23:39 +05:30
%span.ref-name= protected_branch.name
2017-09-10 17:25:29 +05:30
- if @project.root_ref?(protected_branch.name)
2022-03-02 08:16:31 +05:30
= gl_badge_tag s_('ProtectedBranch|default'), variant: :info
2019-12-21 20:55:43 +05:30
%div
- if protected_branch.wildcard?
2022-03-02 08:16:31 +05:30
- matching_branches = protected_branch.matching(repository.branch_names)
2019-12-21 20:55:43 +05:30
= link_to pluralize(matching_branches.count, "matching branch"), namespace_project_protected_branch_path(@project.namespace, @project, protected_branch)
- elsif !protected_branch.commit
%span.text-muted Branch was deleted.
2017-09-10 17:25:29 +05:30
= yield
2023-03-04 22:38:38 +05:30
= render_if_exists 'protected_branches/ee/code_owner_approval_table', protected_branch: protected_branch
2019-12-21 20:55:43 +05:30
2017-09-10 17:25:29 +05:30
- if can_admin_project
%td
2022-06-21 17:19:12 +05:30
= link_to s_('ProtectedBranch|Unprotect'), [@project, protected_branch, { update_section: 'js-protected-branches-settings' }], disabled: local_assigns[:disabled], aria: { label: s_('ProtectedBranch|Unprotect branch') }, data: { confirm: s_('ProtectedBranch|Branch will be writable for developers. Are you sure?'), confirm_btn_variant: 'danger' }, method: :delete, class: "btn gl-button btn-danger btn-sm"