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
410 B
16 lines
410 B
2 years ago
|
class Form::Lettings::Questions::ChchargeBiWeekly < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "chcharge"
|
||
|
@check_answer_label = "Care home charges"
|
||
|
@header = "How much does the household pay every 2 weeks?"
|
||
|
@type = "numeric"
|
||
|
@width = 5
|
||
|
@check_answers_card_number = 0
|
||
|
@hint_text = ""
|
||
|
@step = 0.01
|
||
|
@prefix = "£"
|
||
|
@suffix = " every 2 weeks"
|
||
|
end
|
||
|
end
|