Submit social housing lettings and sales data (CORE)
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.
 
 
 
 

14 lines
584 B

class Form::Lettings::Questions::Sex8 < ::Form::Question
def initialize(id, hsh, page)
super
@id = "sex8"
@check_answer_label = "Person 8’s gender identity"
@header = "Which of these best describes person 8’s gender identity?"
@type = "radio"
@check_answers_card_number = 8
@hint_text = ""
@answer_options = ANSWER_OPTIONS
end
ANSWER_OPTIONS = { "F" => { "value" => "Female" }, "M" => { "value" => "Male" }, "X" => { "value" => "Non-binary" }, "divider" => { "value" => true }, "R" => { "value" => "Person prefers not to say" } }.freeze
end