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.
|
|
|
class Form::Sales::Questions::Buyer2EthnicGroup < ::Form::Question
|
|
|
|
def initialize(id, hsh, page)
|
|
|
|
super
|
|
|
|
@id = "ethnic_group2"
|
|
|
|
@check_answer_label = "Buyer 2’s ethnic group"
|
|
|
|
@header = "What is buyer 2’s ethnic group?"
|
|
|
|
@type = "radio"
|
|
|
|
@answer_options = ANSWER_OPTIONS
|
|
|
|
@check_answers_card_number = 2
|
|
|
|
@question_number = 30
|
|
|
|
end
|
|
|
|
|
|
|
|
ANSWER_OPTIONS = {
|
|
|
|
"0" => { "value" => "White" },
|
|
|
|
"1" => { "value" => "Mixed or Multiple ethnic groups" },
|
|
|
|
"2" => { "value" => "Asian or Asian British" },
|
|
|
|
"3" => { "value" => "Black, African, Caribbean or Black British" },
|
|
|
|
"4" => { "value" => "Arab or other ethnic group" },
|
|
|
|
"divider" => { "value" => true },
|
|
|
|
"17" => { "value" => "Buyer prefers not to say" },
|
|
|
|
}.freeze
|
|
|
|
end
|