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.
18 lines
633 B
18 lines
633 B
2 years ago
|
class Form::Sales::Questions::PersonGenderIdentity < ::Form::Sales::Questions::Person
|
||
|
def initialize(id, hsh, page, person_index:)
|
||
|
super
|
||
|
@check_answer_label = "Person #{person_display_number}’s gender identity"
|
||
|
@header = "Which of these best describes Person #{person_display_number}’s gender identity?"
|
||
|
@type = "radio"
|
||
|
@answer_options = ANSWER_OPTIONS
|
||
|
@check_answers_card_number = person_index
|
||
|
end
|
||
|
|
||
|
ANSWER_OPTIONS = {
|
||
|
"F" => { "value" => "Female" },
|
||
|
"M" => { "value" => "Male" },
|
||
|
"X" => { "value" => "Non-binary" },
|
||
|
"R" => { "value" => "Person prefers not to say" },
|
||
|
}.freeze
|
||
|
end
|