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::HouseholdWheelchair < ::Form::Question
|
|
|
|
def initialize(id, hsh, page)
|
|
|
|
super
|
|
|
|
@id = "wheel"
|
|
|
|
@header = "Does anyone in the household use a wheelchair?"
|
|
|
|
@type = "radio"
|
|
|
|
@answer_options = ANSWER_OPTIONS
|
|
|
|
@hint_text = "This can be inside or outside the home"
|
|
|
|
@question_number = 66
|
|
|
|
end
|
|
|
|
|
|
|
|
ANSWER_OPTIONS = {
|
|
|
|
"1" => { "value" => "Yes" },
|
|
|
|
"2" => { "value" => "No" },
|
|
|
|
"3" => { "value" => "Don't know" },
|
|
|
|
}.freeze
|
|
|
|
end
|