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.
30 lines
952 B
30 lines
952 B
class Form::Lettings::Questions::EthnicGroup < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "ethnic_group" |
|
@type = "radio" |
|
@check_answers_card_number = 1 |
|
@answer_options = ANSWER_OPTIONS |
|
@question_number = get_question_number_from_hash(QUESTION_NUMBER_FROM_YEAR) |
|
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" => "Tenant prefers not to say" }, |
|
}.freeze |
|
|
|
QUESTION_NUMBER_FROM_YEAR = { 2023 => 34, 2024 => 33, 2025 => 33, 2026 => 33 }.freeze |
|
|
|
def label_from_value(value, _log = nil, _user = nil) |
|
return unless value |
|
|
|
return "Prefers not to say" if value == "17" |
|
|
|
super |
|
end |
|
end
|
|
|