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.
14 lines
339 B
14 lines
339 B
2 years ago
|
class Form::Sales::Questions::MonthlyRent < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "mrent"
|
||
|
@check_answer_label = "Monthly rent"
|
||
|
@header = "What is the basic monthly rent?"
|
||
|
@type = "numeric"
|
||
|
@min = 0
|
||
|
@width = 5
|
||
|
@prefix = "£"
|
||
|
@hint_text = "Amount paid before any charges"
|
||
|
end
|
||
|
end
|