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

_remove_button.html.haml « settings « groups « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66d6b516a86a64d2c2b6c5f8e5e0db9505920d49 (plain)
1
2
3
4
5
6
7
8
- remove_form_id = local_assigns.fetch(:remove_form_id, nil)

- if group.paid?
  = render Pajamas::AlertComponent.new(dismissible: false, alert_class: 'gl-mb-5', alert_data: { testid: 'group-has-linked-subscription-alert' }) do
    .gl-alert-body
      = html_escape(_("This group can't be removed because it is linked to a subscription. To remove this group, %{linkStart}link the subscription%{linkEnd} with a different group.")) % { linkStart: "<a href=\"#{help_page_path('subscriptions/index', anchor: 'change-the-linked-namespace')}\">".html_safe, linkEnd: '</a>'.html_safe }

.js-confirm-danger{ data: group_settings_confirm_modal_data(group, remove_form_id) }