2021-12-11 22:18:48 +05:30
|
|
|
- remove_form_id = local_assigns.fetch(:remove_form_id, nil)
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
.sub-section
|
|
|
|
%h4.danger-title= _('Remove group')
|
2021-12-11 22:18:48 +05:30
|
|
|
= form_tag(group, method: :delete, id: remove_form_id) do
|
2020-03-13 15:44:24 +05:30
|
|
|
%p
|
2020-04-08 14:13:33 +05:30
|
|
|
= _('Removing this group also removes all child projects, including archived projects, and their resources.')
|
2020-03-13 15:44:24 +05:30
|
|
|
%br
|
|
|
|
%strong= _('Removed group can not be restored!')
|
2021-04-29 21:17:54 +05:30
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
= render 'groups/settings/remove_button', group: group, remove_form_id: remove_form_id
|