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.
24 lines
932 B
24 lines
932 B
2 years ago
|
class Form::Lettings::Questions::Nationality < ::Form::Question
|
||
2 years ago
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "national"
|
||
|
@check_answer_label = "Lead tenant’s nationality"
|
||
2 years ago
|
@header = "What is the nationality of the lead tenant?"
|
||
2 years ago
|
@type = "radio"
|
||
|
@check_answers_card_number = 1
|
||
|
@hint_text = "The lead tenant is the person in the household who does the most paid work. If several people do the same paid work, the lead tenant is whoever is the oldest."
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = {
|
||
|
"18" => { "value" => "United Kingdom" },
|
||
|
"17" => { "value" => "Republic of Ireland" },
|
||
|
"19" => { "value" => "European Economic Area (EEA) country, excluding Ireland" },
|
||
2 years ago
|
"20" => { "value" => "Afghanistan" },
|
||
|
"21" => { "value" => "Ukraine" },
|
||
2 years ago
|
"12" => { "value" => "Other" },
|
||
|
"divider" => true,
|
||
|
"13" => { "value" => "Tenant prefers not to say" },
|
||
|
}.freeze
|
||
|
end
|