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.
33 lines
1.1 KiB
33 lines
1.1 KiB
<% content_for :title, "Review lettings log" %> |
|
<% content_for :breadcrumbs, govuk_breadcrumbs(breadcrumbs: { |
|
"Logs" => "/logs", |
|
"Log #{@log.id}" => "/lettings-logs/#{@log.id}", |
|
"Review lettings log" => "", |
|
}) %> |
|
|
|
<div class="govuk-grid-row"> |
|
<div class="govuk-grid-column-two-thirds-from-desktop"> |
|
<h1 class="govuk-heading-xl"> |
|
<%= content_for(:title) %> |
|
</h1> |
|
<p class="govuk-body"> |
|
<%= review_log_text(@log) %> |
|
</p> |
|
<% @log.form.sections.map do |section| %> |
|
<h2 class="govuk-heading-m"><%= section.label %></h2> |
|
<% section.subsections.map do |subsection| %> |
|
<div class="x-govuk-summary-card govuk-!-margin-bottom-6"> |
|
<div class="x-govuk-summary-card__header"> |
|
<h3 class="x-govuk-summary-card__title"><%= subsection.label %></h3> |
|
</div> |
|
<div class="x-govuk-summary-card__body"> |
|
<%= render partial: "form/check_answers_summary_list", locals: { |
|
subsection:, |
|
lettings_log: @log, |
|
} %> |
|
</div> |
|
</div> |
|
<% end %> |
|
<% end %> |
|
</div> |
|
</div>
|
|
|