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.
16 lines
440 B
16 lines
440 B
2 years ago
|
class Form::Lettings::Questions::Hhmemb < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "hhmemb"
|
||
|
@check_answer_label = "Number of household members"
|
||
|
@header = "How many people live in the household for this letting?"
|
||
|
@type = "numeric"
|
||
|
@width = 2
|
||
|
@check_answers_card_number = 0
|
||
|
@max = 8
|
||
|
@min = 1
|
||
|
@hint_text = "You can provide details for a maximum of 8 people."
|
||
|
@step = 1
|
||
|
end
|
||
|
end
|