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.
17 lines
855 B
17 lines
855 B
2 years ago
|
<%= form_with url: scheme_deactivate_path(@scheme), method: "get", local: true do |f| %>
|
||
|
<% content_for :before_content do %>
|
||
|
<%= govuk_back_link(href: :back) %>
|
||
|
<% end %>
|
||
|
<h1 class="govuk-heading-l">
|
||
|
<span class="govuk-caption-l"><%= @scheme.service_name %></span>
|
||
|
<%= "This change will affect SOME logs" %>
|
||
|
</h1>
|
||
|
<%= govuk_warning_text text: "Your data providers will need to review these logs and answer a few questions again. We’ll email each log creator with a list of logs that need updating." %>
|
||
|
<%= f.hidden_field :confirm %>
|
||
|
<%= f.hidden_field :deactivation_date, :value => params[:deactivation_date] %>
|
||
|
<div class="govuk-button-group">
|
||
|
<%= f.govuk_submit "Deactivate this scheme" %>
|
||
|
<%= govuk_button_link_to "Cancel", scheme_details_path, html: { method: :get }, secondary: true %>
|
||
|
</div>
|
||
|
<% end %>
|