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.6 KiB
33 lines
1.6 KiB
<% content_for :title, "#{subsection.id.humanize} - Check your answers" %> |
|
<% content_for :breadcrumbs, govuk_breadcrumbs(breadcrumbs: { |
|
"Logs" => "/logs", |
|
"Log #{@case_log.id}" => "/logs/#{@case_log.id}", |
|
subsection.label => "", |
|
}) %> |
|
|
|
<div class="govuk-grid-row"> |
|
<div class="govuk-grid-column-three-quarters-from-desktop"> |
|
<h1 class="govuk-heading-l"> |
|
<span class="govuk-caption-l"><%= subsection.label %></span> |
|
Check your answers |
|
</h1> |
|
|
|
<%= display_answered_questions_summary(subsection, @case_log) %> |
|
|
|
<dl class="govuk-summary-list"> |
|
<% subsection.applicable_questions(@case_log).each do |question| %> |
|
<%= render partial: "form/check_answers_table", locals: { question:, case_log: @case_log } %> |
|
<% end %> |
|
</dl> |
|
|
|
<%= form_with model: @case_log, method: "get" do |f| %> |
|
<%= f.govuk_submit "Save and return to log" do %> |
|
<% if @case_log.status == "in_progress" && @case_log.status == "completed" || @case_log.form.all_subsections_except_declaration_completed?(@case_log) == false %> |
|
<%= govuk_button_link_to "Save and go to next incomplete section", "/logs/#{@case_log.id}/#{@case_log.form.next_incomplete_section_redirect_path(subsection, @case_log)}", secondary: true %> |
|
<% elsif @case_log.status == "completed" || @case_log.form.all_subsections_except_declaration_completed?(@case_log) %> |
|
<%= govuk_button_link_to "Save and go to submit", "/logs/#{@case_log.id}/#{@case_log.form.next_incomplete_section_redirect_path(subsection, @case_log)}", secondary: true %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
</div> |
|
</div>
|
|
|