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.
19 lines
881 B
19 lines
881 B
1 year ago
|
<% content_for :before_content do %>
|
||
|
<%= govuk_back_link href: @form.back_path %>
|
||
|
<% end %>
|
||
|
|
||
|
<div class="govuk-grid-row">
|
||
|
<div class="govuk-grid-column-two-thirds">
|
||
|
<span class="govuk-caption-l">Bulk upload for sales (<%= @bulk_upload.year_combo %>)</span>
|
||
|
<h1 class="govuk-heading-l">Are you sure you want to upload all logs from this bulk upload?</h1>
|
||
|
|
||
|
<p class="govuk-body">There are <%= pluralize(@bulk_upload.logs.count, "log") %> in this bulk upload, and <%= pluralize(@bulk_upload.bulk_upload_errors.count, "unexpected answer") %> will be marked as correct.</p>
|
||
|
|
||
|
<%= form_with model: @form, scope: :form, url: page_bulk_upload_sales_soft_validations_check_path(@bulk_upload, page: "confirm"), method: :patch do |f| %>
|
||
|
<%= f.govuk_submit %>
|
||
|
|
||
|
<%= govuk_button_link_to "Cancel", @form.back_path, secondary: true %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|