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.
|
|
|
<% genders = [
|
|
|
|
OpenStruct.new(id: 0, name: "Male"),
|
|
|
|
OpenStruct.new(id: 1, name: "Female"),
|
|
|
|
OpenStruct.new(id: 2, name: "Non-binary"),
|
|
|
|
OpenStruct.new(id: 3, name: "Prefer not to say")
|
|
|
|
] %>
|
|
|
|
|
|
|
|
<%= turbo_frame_tag "case_log_form", target: "_top" do %>
|
|
|
|
<%= form_with action: '/case_logs', method: "next_question", builder: GOVUKDesignSystemFormBuilder::FormBuilder do |f| %>
|
|
|
|
<%= f.govuk_collection_radio_buttons :tenant_gender, genders, :id, :name, legend: { text: "Which of these best describes the tenant's gender identity?", size: "l" } %>
|
|
|
|
<%= f.hidden_field :previous_question, value: :tenant_gender %>
|
|
|
|
<%= f.hidden_field :case_log_id, value: case_log_id %>
|
|
|
|
<%= f.govuk_submit "Save and continue" %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|