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.
38 lines
2.0 KiB
38 lines
2.0 KiB
<% ethnic_groups = [ |
|
OpenStruct.new(id: 0, ethnicity: "White: English/Scottish/Welsh/Northern Irish/British"), |
|
OpenStruct.new(id: 1, ethnicity: "White: Irish"), |
|
OpenStruct.new(id: 2, ethnicity: "White: Gypsy/Irish Traveller"), |
|
OpenStruct.new(id: 3, ethnicity: "White: Other"), |
|
OpenStruct.new(id: 4, ethnicity: "Mixed: White & Black Caribbean"), |
|
OpenStruct.new(id: 5, ethnicity: "Mixed: White & Black African"), |
|
OpenStruct.new(id: 6, ethnicity: "Mixed: White & Asian"), |
|
OpenStruct.new(id: 7, ethnicity: "Mixed: Other"), |
|
OpenStruct.new(id: 8, ethnicity: "Asian or Asian British: Indian"), |
|
OpenStruct.new(id: 9, ethnicity: "Asian or Asian British: Pakistani"), |
|
OpenStruct.new(id: 10, ethnicity: "Asian or Asian British: Bangladeshi"), |
|
OpenStruct.new(id: 11, ethnicity: "Asian or Asian British: Chinese"), |
|
OpenStruct.new(id: 12, ethnicity: "Asian or Asian British: Other"), |
|
OpenStruct.new(id: 13, ethnicity: "Black: Caribbean"), |
|
OpenStruct.new(id: 14, ethnicity: "Black: African"), |
|
OpenStruct.new(id: 15, ethnicity: "Black: Other"), |
|
OpenStruct.new(id: 16, ethnicity: "Other Ethnic Group: Arab"), |
|
OpenStruct.new(id: 17, ethnicity: "Other Ethnic Group: Other"), |
|
OpenStruct.new(id: 18, ethnicity: "Prefer not to say") |
|
] %> |
|
|
|
<% previous_question = Form.previous_question("tenant_ethnic_group") %> |
|
<% content_for :before_content do %> |
|
<%= govuk_back_link href: "/case_logs/#{case_log_id}/#{previous_question}" do %> |
|
Back |
|
<% end %> |
|
<% end %> |
|
|
|
|
|
<%= 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_ethnic_group, ethnic_groups, :id, :ethnicity, legend: { text: "What is the tenant’s ethnic group?", size: "l" } %> |
|
<%= f.hidden_field :previous_question, value: :tenant_ethnic_group %> |
|
<%= f.hidden_field :case_log_id, value: case_log_id %> |
|
<%= f.govuk_submit "Save and continue" %> |
|
<% end %> |
|
<% end %>
|
|
|