18 lines
778 B
18 lines
778 B
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" |
|
@question_number = 83 |
|
end |
|
|
|
ANSWER_OPTIONS = { |
|
"1" => { "value" => "Yes" }, |
|
"2" => { "value" => "No" }, |
|
"3" => { "value" => "Don’t know" }, |
|
}.freeze |
|
end
|
|
|