Submit social housing lettings and sales data (CORE)
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.
|
|
|
<% 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 action: '/case_logs', method: "next_page", builder: GOVUKDesignSystemFormBuilder::FormBuilder do |f| %>
|
|
|
|
<% page_info["questions"].map do |question_key, question| %>
|
|
|
|
<%= render partial: "form/#{question["type"]}_question", locals: { case_log_id: case_log_id, page_key: page_key, question_key: question_key, question: question, f: f } %>
|
|
|
|
<% end %>
|
|
|
|
<%= f.govuk_submit "Save and continue" %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|