16 lines
783 B
16 lines
783 B
<%= turbo_frame_tag "case_log_form", target: "_top" do %> |
|
<div class="govuk-grid-row"> |
|
<div class="govuk-grid-column-three-quarters-from-desktop"> |
|
<h1 class="govuk-heading-l">Check the answers you gave for <%= subsection.id.humanize(capitalize: false) %></h1> |
|
<%= display_answered_questions_summary(subsection, @case_log) %> |
|
<dl class="govuk-summary-list govuk-!-margin-bottom-9"> |
|
<% subsection.applicable_questions(@case_log).each do |question| %> |
|
<%= render partial: 'form/check_answers_table', locals: { question: question, case_log: @case_log } %> |
|
<% end %> |
|
</dl> |
|
<%= form_with model: @case_log, method: "get" do |f| %> |
|
<%= f.govuk_submit "Save and continue" %> |
|
<% end %> |
|
</div> |
|
</div> |
|
<% end %>
|
|
|