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.
26 lines
1001 B
26 lines
1001 B
<% previous_page = form.previous_page(page_key) %> |
|
<% content_for :before_content do %> |
|
<%= govuk_back_link href: "/case_logs/#{@case_log.id}/#{previous_page}" do %> |
|
Back |
|
<% end %> |
|
<% end %> |
|
|
|
<%= turbo_frame_tag "case_log_form", target: "_top" do %> |
|
|
|
<% if page_info["header"].present? %> |
|
<h1 class="govuk-heading-xl"> |
|
<%= page_info["header"] %> |
|
</h1> |
|
<% end %> |
|
<%= form_with model: @case_log, method: "submit_form", builder: GOVUKDesignSystemFormBuilder::FormBuilder do |f| %> |
|
<%= f.govuk_error_summary %> |
|
<% page_info["questions"].map do |question_key, question| %> |
|
<div id=<%= question_key + "_div " %><%= display_question_key_div(page_info, question_key) %> > |
|
<%= render partial: "form/#{question["type"]}_question", locals: { question_key: question_key.to_sym, question: question, f: f } %> |
|
</div> |
|
<% end %> |
|
|
|
<%= f.hidden_field :previous_page, value: page_key %> |
|
<%= f.govuk_submit "Save and continue" %> |
|
<% end %> |
|
<% end %>
|
|
|