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
554 B
21 lines
554 B
2 years ago
|
class Form::Sales::Questions::Fromprop < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "fromprop"
|
||
|
@check_answer_label = "Previous property type"
|
||
|
@header = "What was the previous property type?"
|
||
|
@type = "radio"
|
||
|
@hint_text = ""
|
||
|
@page = page
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = {
|
||
|
"1" => { "value" => "Flat or maisonette" },
|
||
|
"2" => { "value" => "Bedsit" },
|
||
|
"3" => { "value" => "House" },
|
||
|
"4" => { "value" => "Bungalow" },
|
||
|
"9" => { "value" => "Other" },
|
||
|
}.freeze
|
||
|
end
|