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.
 
 
 
 

13 lines
402 B

class Form::Lettings::Pages::Person7Known < ::Form::Page
def initialize(id, hsh, subsection)
super
@id = "person_7_known"
@header = "You’ve given us the details for 6 people in the household"
@depends_on = [{ "hhmemb" => 7 }, { "hhmemb" => 8 }]
@description = ""
end
def questions
@questions ||= [Form::Lettings::Questions::DetailsKnown7.new(nil, nil, self)]
end
end