diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 289526d9f4..d9f0023663 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -31,6 +31,7 @@ def footer_links { text: "Privacy policy", href: "https://www.gov.uk/government/publications/privacy-information-education-providers-workforce-including-teachers/privacy-information-education-providers-workforce-including-teachers", attr: { target: "_blank" } }, { text: "Terms and Conditions", href: page_path("terms-and-conditions") }, { text: "Accessibility", href: page_path("accessibility") }, + { text: "Savings methodology", href: page_path("savings-methodology") }, ] end diff --git a/app/views/pages/savings-methodology.html.slim b/app/views/pages/savings-methodology.html.slim new file mode 100644 index 0000000000..6df32c1061 --- /dev/null +++ b/app/views/pages/savings-methodology.html.slim @@ -0,0 +1,44 @@ +- content_for :page_title_prefix do + | Savings methodology + +.govuk-grid-row + .govuk-grid-column-two-thirds + h1.govuk-heading-xl Savings methodology + + p.govuk-body + | We estimate that Teaching Vacancies' current savings figure is between £47.3 and £60.8 million, from September 2018 to August 2024. + + h2.govuk-heading-l How we calculate the savings figure + + p.govuk-body + | Teaching Vacancies’ savings methodology is calculated yearly and is based on feedback from hiring staff. + p.govuk-body + | Once a vacancy closes, hiring staff are asked if they: + ul.govuk-list.govuk-list--bullet + li listed the vacancy on a paid service + + li listed the vacancy on a mix of paid and free services + + li listed the vacancy on a free service + + li do not know where else they've listed the vacancy + + li did not list anywhere else + + p.govuk-body + | Responses are collected to provide a free vacancy listing figure. This is the amount of vacancies listed only on Teaching Vacancies or on Teaching Vacancies and a free alternative where there was no cost incurred by the school. + p.govuk-body + | The savings estimate provides a minimum and a maximum savings figure. This is calculated by assuming a 'do not know' response could represent a vacancy listed: + ul.govuk-list.govuk-list--bullet + li only on Teaching Vacancies or a free service + + li on a paid service + + p.govuk-body + | The amount of total vacancies that are no cost are then multiplied against the average cost of a vacancy to work out a savings estimate. The average cost of a vacancy is an approximate market rate of a paid job advertisement, based on research. + p.govuk-body + | The result shows how many vacancies listed on Teaching Vacancies are likely not listed on paid services, giving an estimate of cost savings. + p.govuk-body + | Not all hiring staff respond to the questionnaire so this is an approximate sample of all vacancies listed in a year. + p.govuk-body + | To find out more about the savings figure, #{govuk_link_to("contact us", "https://teaching-vacancies.service.gov.uk/support_request/new")}. diff --git a/config/locales/en.yml b/config/locales/en.yml index 5d955c6a2f..658ac32876 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -206,6 +206,9 @@ en: terms-and-conditions: page_description: Read Teaching Vacancies' terms of use for jobseekers and schools. You must agree to these to use the service. + savings-methodology: + page_description: + Read Teaching Vacancies' savings methodology. posts: index: diff --git a/spec/system/other/support_links_spec.rb b/spec/system/other/support_links_spec.rb index 47a37df975..f79958e157 100644 --- a/spec/system/other/support_links_spec.rb +++ b/spec/system/other/support_links_spec.rb @@ -21,4 +21,11 @@ expect(page).to have_content(/Accessibility statement/i) end + + scenario "the savings methodology" do + visit root_path + click_on "Savings methodology" + + expect(page).to have_content(/Savings methodology/i) + end end