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.
17 lines
490 B
17 lines
490 B
9 months ago
|
class Form::Lettings::Questions::NationalityAll < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "nationality_all"
|
||
|
@check_answer_label = "Lead tenant’s nationality"
|
||
|
@header = "Enter a nationality"
|
||
|
@type = "select"
|
||
|
@check_answers_card_number = 1
|
||
|
@answer_options = GlobalConstants::COUNTRIES_ANSWER_OPTIONS
|
||
|
@question_number = 36
|
||
|
end
|
||
|
|
||
|
def answer_label(log, _current_user = nil)
|
||
|
answer_options[log.nationality_all.to_s]["name"]
|
||
|
end
|
||
|
end
|