20 lines
557 B
20 lines
557 B
class Form::Lettings::Pages::LocationSearch < ::Form::Page |
|
def initialize(_id, hsh, subsection) |
|
super("location_search", hsh, subsection) |
|
@depends_on = [ |
|
{ |
|
"needstype" => 2, |
|
"scheme_has_multiple_locations?" => true, |
|
"scheme_has_large_number_of_locations?" => true, |
|
}, |
|
] |
|
@copy_key = "lettings.setup.location_id.twenty_or_more" |
|
@next_unresolved_page_id = :check_answers |
|
end |
|
|
|
def questions |
|
@questions ||= [ |
|
Form::Lettings::Questions::LocationIdSearch.new(nil, nil, self), |
|
] |
|
end |
|
end
|
|
|