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
561 B
16 lines
561 B
2 years ago
|
class Form::Lettings::Questions::Offered < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "offered"
|
||
|
@check_answer_label = "Times previously offered since becoming available"
|
||
|
@header = "Since becoming available for re-let, how many times has the property been previously offered?"
|
||
|
@type = "numeric"
|
||
|
@width = 2
|
||
|
@check_answers_card_number = 0
|
||
|
@max = 150
|
||
|
@min = 0
|
||
|
@hint_text = "This is after the last tenancy ended. If the property is being offered for let for the first time, enter 0."
|
||
|
@step = 1
|
||
|
end
|
||
|
end
|