Submit social housing lettings and sales data (CORE)
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.
|
|
|
<p class="govuk-body">
|
|
|
|
<%= intro %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<% sorted_errors.each do |error| %>
|
|
|
|
<%= govuk_table do |table| %>
|
|
|
|
<%= table.with_head do |head| %>
|
|
|
|
<% head.with_row do |row| %>
|
|
|
|
<% row.with_cell(text: question_for_field(error[0][1].to_sym), header: true) %>
|
|
|
|
<% row.with_cell(text: "Column #{error[0][0]}", header: true, numeric: true) %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= table.with_body do |body| %>
|
|
|
|
<% body.with_row do |row| %>
|
|
|
|
<% row.with_cell(text: error[0][2]) %>
|
|
|
|
<% row.with_cell(text: pluralize(error[1], "error"), numeric: true) %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|