20 lines
786 B
20 lines
786 B
class Form::Lettings::Questions::GenderIdentity1 < ::Form::Question |
|
def initialize(id, hsh, page) |
|
super |
|
@id = "sex1" |
|
@check_answer_label = "Lead tenant’s gender identity" |
|
@header = "Which of these best describes the lead tenant’s gender identity?" |
|
@type = "radio" |
|
@check_answers_card_number = 1 |
|
@hint_text = "The lead tenant is the person in the household who does the most paid work. If several people do the same paid work, the lead tenant is whoever is the oldest." |
|
@answer_options = ANSWER_OPTIONS |
|
end |
|
|
|
ANSWER_OPTIONS = { |
|
"F" => { "value" => "Female" }, |
|
"M" => { "value" => "Male" }, |
|
"X" => { "value" => "Non-binary" }, |
|
"divider" => { "value" => true }, |
|
"R" => { "value" => "Tenant prefers not to say" }, |
|
}.freeze |
|
end
|
|
|