|
|
|
<div class="govuk-summary-card govuk-!-margin-bottom-6">
|
|
|
|
<div class="govuk-summary-card__title-wrapper">
|
|
|
|
<% if lettings? %>
|
|
|
|
<h3 class="govuk-summary-card__title"><strong>Row <%= row %></strong> <%= tenant_code_html %> <%= property_ref_html %></h3>
|
|
|
|
<% else %>
|
|
|
|
<h3 class="govuk-summary-card__title"><strong>Row <%= row %></strong> <%= purchaser_code_html %></h3>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="govuk-summary-card__content">
|
|
|
|
<%= govuk_table do |table| %>
|
|
|
|
<% table.head do |head| %>
|
|
|
|
<% head.row do |row| %>
|
|
|
|
<% row.cell(header: true, text: "Cell") %>
|
|
|
|
<% row.cell(header: true, text: "Question") %>
|
|
|
|
<% row.cell(header: true, text: "Error") %>
|
|
|
|
<% row.cell(header: true, text: "Specification") %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% table.body do |body| %>
|
|
|
|
<% bulk_upload_errors.each do |error| %>
|
|
|
|
<% body.row do |row| %>
|
|
|
|
<% row.cell(header: true, text: error.cell) %>
|
|
|
|
<% row.cell(text: question_for_field(error.field)) %>
|
|
|
|
<% row.cell(text: error.error) %>
|
|
|
|
<% row.cell(text: error.field.humanize) %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|