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.
18 lines
752 B
18 lines
752 B
2 years ago
|
class Form::Sales::Questions::LaNominations < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "lanomagr"
|
||
|
@check_answer_label = "Household rehoused under a local authority nominations agreement?"
|
||
|
@header = "Was the household rehoused under a 'local authority nominations agreement'?"
|
||
|
@type = "radio"
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
@hint_text = "A local authority nominations agreement is a written agreement between a local authority and private registered provider (PRP) that some or all of its sales vacancies are offered to local authorities for rehousing"
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = {
|
||
|
"1" => { "value" => "Yes" },
|
||
|
"2" => { "value" => "No" },
|
||
|
"3" => { "value" => "Don’t know" },
|
||
|
}.freeze
|
||
|
end
|