diff --git a/app/models/eligibility_check.rb b/app/models/eligibility_check.rb index 736381485a..ad4aaba199 100644 --- a/app/models/eligibility_check.rb +++ b/app/models/eligibility_check.rb @@ -81,6 +81,10 @@ def england_or_wales? CountryCode.england?(country_code) || CountryCode.wales?(country_code) end + def european_free_trade_association? + CountryCode.european_free_trade_association?(country_code) + end + def skip_additional_questions? country&.eligibility_skip_questions || false end diff --git a/app/views/eligibility_interface/result/ineligible.html.erb b/app/views/eligibility_interface/result/ineligible.html.erb index 729dabea82..d28c6df862 100644 --- a/app/views/eligibility_interface/result/ineligible.html.erb +++ b/app/views/eligibility_interface/result/ineligible.html.erb @@ -26,6 +26,16 @@ <% end %> +<% if @eligibility_check.ineligible_reasons.include?(:work_experience) && @eligibility_check.european_free_trade_association? %> +

+ To apply for QTS, you’ll need at least 9 months of teaching work experience that was gained after completing your teaching qualification. +

+ +

+ The adaptation period for citizens of Iceland, Norway, and Lichtenstein can be used to gain more teaching experience; contact <%= govuk_link_to t("service.email.enquiries"), "mailto:#{t("service.email.enquiries")}" %> for more information. +

+<% end %> + <% unless @eligibility_check.ineligible_reasons.include?(:misconduct) || @eligibility_check.england_or_wales? %>

You can also: