You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.3 KiB
22 lines
1.3 KiB
2 years ago
|
<%= form_with url: stock_owners_organisation_path(target_organisation_id: @target_organisation.id), method: "delete", local: true do |f| %>
|
||
2 years ago
|
<% if current_user.support? %>
|
||
|
<%= render partial: "organisations/headings", locals: { main: @organisation.name, sub: nil } %>
|
||
|
<%= render SubNavigationComponent.new(items: secondary_items(request.path, @organisation.id)) %>
|
||
2 years ago
|
<h2 class="govuk-visually-hidden">Remove Stock Owner</h2>
|
||
2 years ago
|
<% end %>
|
||
|
<% if current_user.support? %>
|
||
|
<%= govuk_back_link(href: :back) %>
|
||
2 years ago
|
<%= render partial: "organisations/headings", locals: { main: "You are removing ‘#{@target_organisation.name}’ from this organisation's stock owners", sub: nil } %>
|
||
2 years ago
|
<% else %>
|
||
|
<% content_for :before_content do %>
|
||
|
<%= govuk_back_link(href: :back) %>
|
||
|
<% end %>
|
||
2 years ago
|
<%= render partial: "organisations/headings", locals: { main: "You are removing ‘#{@target_organisation.name}’ from your organisation's stock owners", sub: nil } %>
|
||
2 years ago
|
<% end %>
|
||
|
<%= govuk_warning_text text: "You will no longer be able to submit logs for #{@target_organisation.name}" %>
|
||
|
<div class="govuk-button-group">
|
||
|
<%= f.govuk_submit "Confirm" %>
|
||
2 years ago
|
<%= govuk_button_link_to "Cancel", stock_owners_organisation_path(current_user.organisation), html: { method: :get }, secondary: true %>
|
||
2 years ago
|
</div>
|
||
|
<% end %>
|