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.
 
 
 
 

13 lines
366 B

class Form::Sales::Questions::PreviousBedrooms < ::Form::Question
def initialize(id, hsh, page)
super
@id = "frombeds"
@check_answer_label = "Number of bedrooms in previous property"
@header = "How many bedrooms did the property have?"
@type = "numeric"
@width = 5
@min = 1
@max = 6
@hint_text = "For bedsits enter 1"
end
end