Bulk upload for lettings (<%= @bulk_upload.year_combo %>)

Fix <%= pluralize(@bulk_upload.bulk_upload_errors.count, "error") %> and upload file again

We could not create logs from your bulk upload. Below is a list of everything that you need to fix your spreadsheet. You can download the specification to help you fix the cells in your CSV file.

Filename: <%= @bulk_upload.filename %>

<%= govuk_tabs(title: "Error reports") do |c| %> <% c.with_tab(label: "Summary") do %>

This summary shows questions that have at least <%= BulkUploadErrorSummaryTableComponent::DISPLAY_THRESHOLD %> errors or more. See full error report for more details.

<%= render BulkUploadErrorSummaryTableComponent.new(bulk_upload: @bulk_upload) %> <% end %> <% c.with_tab(label: "Full error report") do %> <% @bulk_upload.bulk_upload_errors.group_by(&:row).each do |_row, errors_for_row| %> <%= render BulkUploadErrorRowComponent.new(bulk_upload_errors: errors_for_row) %> <% end %> <% end %> <% end %>
<%= govuk_button_link_to "Upload your file again", start_bulk_upload_lettings_logs_path %>