Jack S
2 years ago
committed by
GitHub
6 changed files with 105 additions and 24 deletions
@ -0,0 +1,21 @@ |
|||||||
|
<%= form_with url: managing_agents_organisation_path(target_organisation_id: @target_organisation.id), method: "delete", local: true do |f| %> |
||||||
|
<% if current_user.support? %> |
||||||
|
<%= render partial: "organisations/headings", locals: { main: @organisation.name, sub: nil } %> |
||||||
|
<%= render SubNavigationComponent.new(items: secondary_items(request.path, @organisation.id)) %> |
||||||
|
<h2 class="govuk-visually-hidden">Remove Managing Agent</h2> |
||||||
|
<% end %> |
||||||
|
<% if current_user.support? %> |
||||||
|
<%= govuk_back_link(href: :back) %> |
||||||
|
<%= render partial: "organisations/headings", locals: { main: "You are removing ‘#{@target_organisation.name}’ from this organisation's managing agents", sub: nil } %> |
||||||
|
<% else %> |
||||||
|
<% content_for :before_content do %> |
||||||
|
<%= govuk_back_link(href: :back) %> |
||||||
|
<% end %> |
||||||
|
<%= render partial: "organisations/headings", locals: { main: "You are removing ‘#{@target_organisation.name}’ from your organisation's managing agents", sub: nil } %> |
||||||
|
<% end %> |
||||||
|
<%= govuk_warning_text text: "#{@target_organisation.name} will no longer be able to submit logs for you" %> |
||||||
|
<div class="govuk-button-group"> |
||||||
|
<%= f.govuk_submit "Confirm" %> |
||||||
|
<%= govuk_button_link_to "Cancel", managing_agents_organisation_path(current_user.organisation), html: { method: :get }, secondary: true %> |
||||||
|
</div> |
||||||
|
<% end %> |
Loading…
Reference in new issue