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.
 
 
 
 

20 lines
514 B

class Form::Sales::Pages::Person3Age < ::Form::Page
def initialize(id, hsh, subsection)
super
@id = "person_3_age"
@header = ""
@description = ""
@subsection = subsection
@depends_on = [
{ "hholdcount" => 3, "details_known_3" => 1 },
{ "hholdcount" => 4, "details_known_3" => 1 },
]
end
def questions
@questions ||= [
Form::Sales::Questions::Person3AgeKnown.new(nil, nil, self),
Form::Sales::Questions::Person3Age.new(nil, nil, self),
]
end
end