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
838 B
24 lines
838 B
2 years ago
|
class Form::Lettings::Questions::PersonRelationship < ::Form::Question
|
||
|
def initialize(id, hsh, page, person_index:)
|
||
|
super(id, hsh, page)
|
||
|
@id = "relat#{person_index}"
|
||
|
@check_answer_label = "Person #{person_index}’s relationship to the lead tenant"
|
||
|
@header = "What is person #{person_index}’s relationship to the lead tenant?"
|
||
|
@type = "radio"
|
||
|
@check_answers_card_number = person_index
|
||
|
@hint_text = ""
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = {
|
||
|
"P" => { "value" => "Partner" },
|
||
|
"C" => {
|
||
|
"value" => "Child",
|
||
|
"hint" => "Must be eligible for child benefit, aged under 16 or under 20 if still in full-time education.",
|
||
|
},
|
||
|
"X" => { "value" => "Other" },
|
||
|
"divider" => { "value" => true },
|
||
|
"R" => { "value" => "Person prefers not to say" },
|
||
|
}.freeze
|
||
|
end
|