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.
40 lines
1.8 KiB
40 lines
1.8 KiB
<% content_for :title, "#{subsection.id.humanize} - Check your answers" %> |
|
<% content_for :breadcrumbs, govuk_breadcrumbs(breadcrumbs: { |
|
"Logs" => "/logs", |
|
"Log #{@log.id}" => send("#{@log.class.name.underscore}_path", @log), |
|
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> |
|
|
|
<% if subsection.id == "setup" && subsection.status(@log) == :completed %> |
|
<%= govuk_inset_text(text: "Changing these answers might remove answers you’ve already given in other sections.") %> |
|
<% end %> |
|
<%= display_answered_questions_summary(subsection, @log, current_user) %> |
|
|
|
<% if any_questions_have_summary_card_number?(subsection, @log) %> |
|
<% subsection.applicable_questions(@log).group_by(&:check_answers_card_number).values.each do |question_group| %> |
|
<%= render CheckAnswersSummaryListCardComponent.new(questions: question_group, log: @log, user: current_user) %> |
|
<% end %> |
|
<% else %> |
|
<%= render partial: "form/check_answers_summary_list", locals: { |
|
subsection:, |
|
lettings_log: @log, |
|
} %> |
|
<% end %> |
|
|
|
<%= form_with model: @log, method: "get" do |f| %> |
|
<%= f.govuk_submit "Save and return to log" do %> |
|
<% next_incomplete_section_redirect_path = @log.form.next_incomplete_section_redirect_path(subsection, @log) %> |
|
<% if @log.status == "in_progress" && next_incomplete_section_redirect_path != "error" %> |
|
<%= govuk_button_link_to "Save and go to next incomplete section", send(next_incomplete_section_path(@log, next_incomplete_section_redirect_path), @log), secondary: true %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
</div> |
|
</div>
|
|
|