8 changed files with 50 additions and 5 deletions
@ -0,0 +1,15 @@ |
|||||||
|
class Form::Lettings::Questions::Chcharge4Weekly < ::Form::Question |
||||||
|
def initialize(id, hsh, page) |
||||||
|
super |
||||||
|
@id = "chcharge" |
||||||
|
@check_answer_label = "Care home charges" |
||||||
|
@header = "How much does the household pay every 4 weeks?" |
||||||
|
@type = "numeric" |
||||||
|
@width = 5 |
||||||
|
@check_answers_card_number = 0 |
||||||
|
@hint_text = "" |
||||||
|
@step = 0.01 |
||||||
|
@prefix = "£" |
||||||
|
@suffix = " every 4 weeks" |
||||||
|
end |
||||||
|
end |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
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 |
||||||
@ -1,4 +1,4 @@ |
|||||||
class Form::Lettings::Questions::Chcharge < ::Form::Question |
class Form::Lettings::Questions::ChchargeMonthly < ::Form::Question |
||||||
def initialize(id, hsh, page) |
def initialize(id, hsh, page) |
||||||
super |
super |
||||||
@id = "chcharge" |
@id = "chcharge" |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
class Form::Lettings::Questions::ChchargeWeekly < ::Form::Question |
||||||
|
def initialize(id, hsh, page) |
||||||
|
super |
||||||
|
@id = "chcharge" |
||||||
|
@check_answer_label = "Care home charges" |
||||||
|
@header = "How much does the household pay every week?" |
||||||
|
@type = "numeric" |
||||||
|
@width = 5 |
||||||
|
@check_answers_card_number = 0 |
||||||
|
@hint_text = "" |
||||||
|
@step = 0.01 |
||||||
|
@prefix = "£" |
||||||
|
@suffix = " every week" |
||||||
|
end |
||||||
|
end |
||||||
Loading…
Reference in new issue