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.
21 lines
997 B
21 lines
997 B
class Form::Lettings::Questions::ReasonablePreferenceReason < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "reasonable_preference_reason" |
|
@check_answer_label = "Reason for reasonable preference" |
|
@header = "Why was the household given ‘reasonable preference’?" |
|
@type = "checkbox" |
|
@check_answers_card_number = 0 |
|
@hint_text = "Select all that apply." |
|
@answer_options = ANSWER_OPTIONS |
|
end |
|
|
|
ANSWER_OPTIONS = { |
|
"rp_homeless" => { "value" => "They were homeless or about to lose their home (within 56 days)" }, |
|
"rp_insan_unsat" => { "value" => "They were living in unsanitary, overcrowded or unsatisfactory housing" }, |
|
"rp_medwel" => { "value" => "They needed to move due to medical and welfare reasons (including disability)" }, |
|
"rp_hardship" => { "value" => "They needed to move to avoid hardship to themselves or others" }, |
|
"divider" => { "value" => true }, |
|
"rp_dontknow" => { "value" => "Don’t know" }, |
|
}.freeze |
|
end
|
|
|