Skip to content

Commit

Permalink
[LUPEYALPHA-1001] FE content updates (#3151)
Browse files Browse the repository at this point in the history
  • Loading branch information
alkesh authored Sep 5, 2024
1 parent dfcf53d commit 0fa5e94
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
2 changes: 0 additions & 2 deletions app/models/policies/further_education_payments.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ module FurtherEducationPayments
# Percentage of claims to QA
MIN_QA_THRESHOLD = 10

URL_SPREADSHEET_ELIGIBLE_PROVIDERS = "https://assets.publishing.service.gov.uk/media/667300fe64e554df3bd0db92/List_of_eligible_FE_providers_and_payment_value_for_levelling_up_premium.xlsx".freeze

VERIFIERS = [
AutomatedChecks::ClaimVerifiers::ProviderVerification
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</p>

<%= govuk_list [
"the FE provider you have selected is not included in the #{govuk_link_to "list of eligible providers", Policies::FurtherEducationPayments::URL_SPREADSHEET_ELIGIBLE_PROVIDERS }".html_safe,
"the FE provider you have selected is not included in the #{govuk_link_to "list of eligible providers", t("further_education_payments.fe_provider_list_url") }".html_safe,
"the spelling of the FE provider does not match our records - check the spelling, including any apostrophes, hyphens or full stops used in the FE provider’s name",
"the FE provider you listed is closed - this could be the case if it has rebranded"
], type: :bullet %>
Expand All @@ -22,7 +22,7 @@
"FE colleges",
"sixth-form colleges",
"designated institutions",
"16 to 19 only academies and free schools"
"16 to 19 only academies and schools"
], type: :bullet %>

<%= govuk_button_link_to "Change FE provider", claim_path(current_journey_routing_name, "further-education-provision-search") %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
], type: :bullet %>

<p class="govuk-body">
If you are unsure if your FE provider is eligible, you can refer to the <%= govuk_link_to "full list of eligible FE providers", "https://assets.publishing.service.gov.uk/media/667300fe64e554df3bd0db92/List_of_eligible_FE_providers_and_payment_value_for_levelling_up_premium.xlsx" %> for more information.
If you are unsure if your FE provider is eligible, you can refer to the <%= govuk_link_to "full list of eligible FE providers", t("further_education_payments.fe_provider_list_url") %> for more information.
</p>

<div id="autocomplete-container" class="govuk-!-margin-bottom-9">
Expand Down
4 changes: 2 additions & 2 deletions app/views/further_education_payments/landing_page.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@
</p>

<%= govuk_list [
govuk_link_to("the FE provider you teach in", "https://assets.publishing.service.gov.uk/media/667300fe64e554df3bd0db92/List_of_eligible_FE_providers_and_payment_value_for_levelling_up_premium.xlsx"),
govuk_link_to("the FE provider you teach in", t("further_education_payments.fe_provider_list_url")),
"the number of hours you teach"
], type: :bullet %>

<p class="govuk-body">
Payments are given up to [TBC] weeks from applying. You will receive an approval email with further information on your application.
Payments are given up to 26 weeks from applying. You will receive an approval email with further information on your application.
</p>

<h2 class="govuk-heading-m govuk-!-margin-top-6">Contact</h2>
Expand Down
7 changes: 4 additions & 3 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -826,14 +826,15 @@ en:
landing_page: Find out if you are eligible for a targeted retention incentive payment for further education teachers
claim_description: for further education payments
journey_name: Claim a targeted retention incentive payment for further education teachers
feedback_email: "FE-Levellingup.PremiumPayments@education.gov.uk"
support_email_address: "FE-Levellingup.PremiumPayments@education.gov.uk"
feedback_email: "FE-targeted.retention-incentive@education.gov.uk"
support_email_address: "FE-targeted.retention-incentive@education.gov.uk"
claim_subject: "Further education payment"
policy_acronym: FE
policy_short_name: Targeted Retention Incentive Payment For FE Teachers
eligibility_criteria_link:
text: targeted retention incentive payments for early career further education teachers
url: "https://www.gov.uk/guidance/levelling-up-premium-payments-for-fe-teachers"
fe_provider_list_url: "https://assets.publishing.service.gov.uk/media/66d70f9c701781e1b341dba7/List_of_eligible_FE_providers_and_payment_values_for_targeted_retention_incentives.xlsx"
admin:
task_questions:
matching_details:
Expand Down Expand Up @@ -891,7 +892,7 @@ en:
must_be_recent_further_education_teacher:
heading: You are not eligible
must_teach_at_least_one_term:
heading: You are not eligible for a retention payment yet
heading: You are not eligible for a targeted retention incentive payment yet
subject_to_problematic_actions:
heading: You are not eligible
teaching_less_than_2_5:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
expect(page).to have_content("What type of contract do you have with #{eligible_college.name}?")
end

scenario "when ineligible FE provider is selected with js", js: true do
scenario "when ineligible FE provider is selected with js", js: true, flaky: true do
when_further_education_payments_journey_configuration_exists
and_ineligible_college_exists
and_eligible_college_exists
Expand Down Expand Up @@ -168,7 +168,7 @@
choose("No, I have not taught at #{eligible_college.name} for at least one academic term")
click_button "Continue"

expect(page).to have_content("You are not eligible for a retention payment yet")
expect(page).to have_content("You are not eligible for a targeted retention incentive payment yet")
end

scenario "when lacking subjects" do
Expand Down Expand Up @@ -239,7 +239,7 @@
choose("No, I have not taught at #{eligible_college.name} for at least one academic term")
click_button "Continue"

expect(page).to have_content("You are not eligible for a retention payment yet")
expect(page).to have_content("You are not eligible for a targeted retention incentive payment yet")
end

scenario "when teaches non eligible course in applicable subject area" do
Expand Down

0 comments on commit 0fa5e94

Please sign in to comment.