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.
 
 
 
 

12 lines
295 B

class Form::Sales::Questions::MortgageAmount < ::Form::Question
def initialize(id, hsh, page)
super
@id = "mortgage"
@check_answer_label = "Mortgage amount"
@header = "What is the mortgage amount?"
@type = "numeric"
@min = 0
@width = 5
@prefix = "£"
end
end