15 lines
468 B
15 lines
468 B
class Form::Sales::Questions::StaircaseOwned < ::Form::Question |
|
def initialize(id, hsh, page, joint_purchase:) |
|
super(id, hsh, page) |
|
@id = "stairowned" |
|
@check_answer_label = I18n.t("check_answer_labels.stairowned", count: joint_purchase ? 2 : 1) |
|
@header = I18n.t("questions.stairowned", count: joint_purchase ? 2 : 1) |
|
@type = "numeric" |
|
@width = 5 |
|
@min = 0 |
|
@max = 100 |
|
@step = 1 |
|
@suffix = "%" |
|
@question_number = 78 |
|
end |
|
end
|
|
|