diff --git a/src/Employer/Employer.Web/Views/ApplicationReview/ApplicationReview.cshtml b/src/Employer/Employer.Web/Views/ApplicationReview/ApplicationReview.cshtml index 07905d02b0..dcf53fe3a2 100644 --- a/src/Employer/Employer.Web/Views/ApplicationReview/ApplicationReview.cshtml +++ b/src/Employer/Employer.Web/Views/ApplicationReview/ApplicationReview.cshtml @@ -3,6 +3,7 @@ @model Esfa.Recruit.Shared.Web.ViewModels.ApplicationReview.ApplicationReviewViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-application-review"; + ViewBag.Title = "Review application"; }
diff --git a/src/Employer/Employer.Web/Views/ApplicationReview/ApplicationStatusConfirmation.cshtml b/src/Employer/Employer.Web/Views/ApplicationReview/ApplicationStatusConfirmation.cshtml index fd7b2eea75..f5670a889e 100644 --- a/src/Employer/Employer.Web/Views/ApplicationReview/ApplicationStatusConfirmation.cshtml +++ b/src/Employer/Employer.Web/Views/ApplicationReview/ApplicationStatusConfirmation.cshtml @@ -2,6 +2,7 @@ @{ ViewBag.Vpv = "/recruitment/employer/page-application-status-confirmation"; + ViewBag.Title = Model.ShowStatusSuccessful ? "Are you sure you want to tell this applicant that they have been accepted?" : "Are you sure you want to tell this applicant that they have not been accepted?"; }
diff --git a/src/Employer/Employer.Web/Views/CloseVacancy/Close.cshtml b/src/Employer/Employer.Web/Views/CloseVacancy/Close.cshtml index 9f29f1d8e2..b496f1eb11 100644 --- a/src/Employer/Employer.Web/Views/CloseVacancy/Close.cshtml +++ b/src/Employer/Employer.Web/Views/CloseVacancy/Close.cshtml @@ -1,6 +1,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.CloseViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-close-vacancy"; + ViewBag.Title = "Are you sure you want to close this advert on Find an apprenticeship?"; }
diff --git a/src/Employer/Employer.Web/Views/CreateVacancyOptions/Options.cshtml b/src/Employer/Employer.Web/Views/CreateVacancyOptions/Options.cshtml index 6415fa3cc4..38c4fc19fb 100644 --- a/src/Employer/Employer.Web/Views/CreateVacancyOptions/Options.cshtml +++ b/src/Employer/Employer.Web/Views/CreateVacancyOptions/Options.cshtml @@ -1,6 +1,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.CreateVacancyOptions.CreateVacancyOptionsViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-create-vacancy-options"; + ViewBag.Title = "Create an advert"; }
diff --git a/src/Employer/Employer.Web/Views/Dashboard/Dashboard.cshtml b/src/Employer/Employer.Web/Views/Dashboard/Dashboard.cshtml index 50b7e037ed..9d3a229f0d 100644 --- a/src/Employer/Employer.Web/Views/Dashboard/Dashboard.cshtml +++ b/src/Employer/Employer.Web/Views/Dashboard/Dashboard.cshtml @@ -11,6 +11,7 @@ ViewBag.ShowReturnToMaLink = Model.FromMaHome; ViewBag.Vpv = "/recruitment/employer/page-dashboard"; ViewBag.ZenDeskLabel = "recruit-recruitment"; + ViewBag.Title = "Your apprenticeship adverts"; } diff --git a/src/Employer/Employer.Web/Views/EditVacancyDates/EditVacancyDates.cshtml b/src/Employer/Employer.Web/Views/EditVacancyDates/EditVacancyDates.cshtml index 66fde87a8c..aa196da097 100644 --- a/src/Employer/Employer.Web/Views/EditVacancyDates/EditVacancyDates.cshtml +++ b/src/Employer/Employer.Web/Views/EditVacancyDates/EditVacancyDates.cshtml @@ -1,6 +1,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.EditVacancyDates.EditVacancyDatesViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-edit-vacancy-dates"; + ViewBag.Title = "Edit advert dates"; }
diff --git a/src/Employer/Employer.Web/Views/Error/ApplicationWithdrawn.cshtml b/src/Employer/Employer.Web/Views/Error/ApplicationWithdrawn.cshtml index 20444c46b0..da5613ebb9 100644 --- a/src/Employer/Employer.Web/Views/Error/ApplicationWithdrawn.cshtml +++ b/src/Employer/Employer.Web/Views/Error/ApplicationWithdrawn.cshtml @@ -1,6 +1,7 @@ @model string @{ ViewBag.Vpv = "/recruitment/employer/page-application-withdrawn"; + ViewBag.Title = "This application has been withdrawn by the candidate"; }
@@ -8,7 +9,7 @@

This application has been withdrawn by the candidate

- Back to vacancy + Back to advert

diff --git a/src/Employer/Employer.Web/Views/Error/Error.cshtml b/src/Employer/Employer.Web/Views/Error/Error.cshtml index d0c0f19a00..95e49c31c0 100644 --- a/src/Employer/Employer.Web/Views/Error/Error.cshtml +++ b/src/Employer/Employer.Web/Views/Error/Error.cshtml @@ -1,5 +1,5 @@ @{ - ViewBag.Title = "Error"; + ViewBag.Title = "There's been an error"; ViewBag.ShowNav = false; ViewBag.Vpv = "/recruitment/employer/page-error"; } diff --git a/src/Employer/Employer.Web/Views/LegalEntityAgreement/LegalEntityAgreementHardStop.cshtml b/src/Employer/Employer.Web/Views/LegalEntityAgreement/LegalEntityAgreementHardStop.cshtml index 64e4fff1cb..561e916930 100644 --- a/src/Employer/Employer.Web/Views/LegalEntityAgreement/LegalEntityAgreementHardStop.cshtml +++ b/src/Employer/Employer.Web/Views/LegalEntityAgreement/LegalEntityAgreementHardStop.cshtml @@ -1,21 +1,23 @@ @model Esfa.Recruit.Employer.Web.ViewModels.LegalEntityAgreement.LegalEntityAgreementHardStopViewModel -@{ +@{ ViewBag.Vpv = "/recruitment/employer/page-legal-entity-agreement-hard-stop"; + ViewBag.Title = "You cannot submit this advert yet"; }
-

You can’t submit this vacancy until:

- -

Your vacancy has been saved as a draft. Once the agreement has been signed, you will be able to - submit your vacancy for review.

+

You cannot submit this advert yet

+

+ You can submit this advert once your organisation has accepted an + employer agreement + with the Education and Skills Funding Agency. +

+

+ Your advert has been saved as a draft. Once the agreement is accepted, you’ll be able to submit your advert for review. +

- + Return to dashboard
diff --git a/src/Employer/Employer.Web/Views/LegalEntityAgreement/LegalEntityAgreementSoftStop.cshtml b/src/Employer/Employer.Web/Views/LegalEntityAgreement/LegalEntityAgreementSoftStop.cshtml index 8a14190302..2e4b9b8098 100644 --- a/src/Employer/Employer.Web/Views/LegalEntityAgreement/LegalEntityAgreementSoftStop.cshtml +++ b/src/Employer/Employer.Web/Views/LegalEntityAgreement/LegalEntityAgreementSoftStop.cshtml @@ -1,32 +1,33 @@ @using Esfa.Recruit.Shared.Web.Mappers @model Esfa.Recruit.Employer.Web.ViewModels.LegalEntityAgreement.LegalEntityAgreementSoftStopViewModel -@{ - ViewBag.Vpv = "/recruitment/employer/page-legal-entity-agreement-soft-stop"; -} +@{ ViewBag.Vpv = "/recruitment/employer/page-legal-entity-agreement-soft-stop"; + ViewBag.Title = "Agreement not accepted"; }
-

Agreement not signed

+

Agreement not accepted

- + Warning

- @Model.LegalEntityName doesn’t have a signed agreement with the Education and Skills Funding Agency (ESFA). - Without a signed agreement you can create a draft vacancy, but won’t be able to submit for posting on Find an apprenticeship. + @Model.LegalEntityName does not have an accepted agreement with the Education and + Skills Funding Agency (ESFA). Without an accepted agreement, + you can create a draft advert, but cannot post it on Find an apprenticeship.

- Only account owners can sign ESFA agreements. If you’re not sure who the owner is, you can - check your team details. + Only account owners can accept ESFA agreements. If you’re not sure who the owner is, you can + check your team details.

- - Review agreement - Continue anyway + Review agreement +
\ No newline at end of file diff --git a/src/Employer/Employer.Web/Views/Part1/Dates/Dates.cshtml b/src/Employer/Employer.Web/Views/Part1/Dates/Dates.cshtml index 6b847b7298..0c4af36d96 100644 --- a/src/Employer/Employer.Web/Views/Part1/Dates/Dates.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Dates/Dates.cshtml @@ -4,6 +4,7 @@ var exampleClosingDate = DateTime.Now.AddMonths(2); var exampleStartingDate = exampleClosingDate.AddDays(14); ViewBag.Vpv = "/recruitment/employer/page-part1-dates"; + ViewBag.Title = "Important dates"; ViewBag.ZenDeskLabel = "recruit-important-dates"; } diff --git a/src/Employer/Employer.Web/Views/Part1/Duration/Duration.cshtml b/src/Employer/Employer.Web/Views/Part1/Duration/Duration.cshtml index 8ced427ea1..254bcfcd09 100644 --- a/src/Employer/Employer.Web/Views/Part1/Duration/Duration.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Duration/Duration.cshtml @@ -3,6 +3,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.Part1.Duration.DurationViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part1-duration"; + ViewBag.Title = "Duration and working hours"; ViewBag.ZenDeskLabel = "recruit-duration-and-working-hours"; }
diff --git a/src/Employer/Employer.Web/Views/Part1/EmployerName/EmployerName.cshtml b/src/Employer/Employer.Web/Views/Part1/EmployerName/EmployerName.cshtml index 664d99eb65..8ae7e049ea 100644 --- a/src/Employer/Employer.Web/Views/Part1/EmployerName/EmployerName.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/EmployerName/EmployerName.cshtml @@ -3,6 +3,7 @@ @model EmployerNameViewModel; @{ ViewBag.Vpv = "/recruitment/employer/page-part1-employer-name"; + ViewBag.Title = "Which employer name do you want on your advert?"; ViewBag.ZenDeskLabel = "recruit-what-employer-name-do-you-want-to-go-on-the-vacancy"; }
diff --git a/src/Employer/Employer.Web/Views/Part1/Location/Location.cshtml b/src/Employer/Employer.Web/Views/Part1/Location/Location.cshtml index 0a3a66c9c3..d3c75fe246 100644 --- a/src/Employer/Employer.Web/Views/Part1/Location/Location.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Location/Location.cshtml @@ -4,6 +4,7 @@ @inject IOptions PcaConfig @{ ViewBag.Vpv = "/recruitment/employer/page-part1-location"; + ViewBag.Title = "Where will the apprentice work?"; ViewBag.ZenDeskLabel = "recruit-where-will-the-apprentice-work"; } diff --git a/src/Employer/Employer.Web/Views/Part1/NumberOfPositions/NumberOfPositions.cshtml b/src/Employer/Employer.Web/Views/Part1/NumberOfPositions/NumberOfPositions.cshtml index f0af314ab7..9717dcc8ed 100644 --- a/src/Employer/Employer.Web/Views/Part1/NumberOfPositions/NumberOfPositions.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/NumberOfPositions/NumberOfPositions.cshtml @@ -2,6 +2,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.Part1.NumberOfPositions.NumberOfPositionsViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part1-number-of-positions"; + ViewBag.Title = "How many positions are there for this apprenticeship?"; ViewBag.ZenDeskLabel = "recruit-how-many-positions-are-there-for-this-apprenticeship"; } diff --git a/src/Employer/Employer.Web/Views/Part1/Part1Complete/Part1Complete.cshtml b/src/Employer/Employer.Web/Views/Part1/Part1Complete/Part1Complete.cshtml index 3ed25e6744..ad69614421 100644 --- a/src/Employer/Employer.Web/Views/Part1/Part1Complete/Part1Complete.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Part1Complete/Part1Complete.cshtml @@ -3,6 +3,7 @@ @inject IOptions ExternalLinks @{ ViewBag.Vpv = "/recruitment/employer/page-part1-complete"; + ViewBag.Title = "Preview your advert"; ViewBag.ZenDeskLabel = "recruit-preview-your-vacancy"; } diff --git a/src/Employer/Employer.Web/Views/Part1/Title/Title.cshtml b/src/Employer/Employer.Web/Views/Part1/Title/Title.cshtml index a00a6078d7..b7dbbb2f6d 100644 --- a/src/Employer/Employer.Web/Views/Part1/Title/Title.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Title/Title.cshtml @@ -3,6 +3,7 @@ @inject ManageApprenticeshipsLinkHelper _externalLinksHelper; @{ ViewBag.Vpv = "/recruitment/employer/page-part1-title"; + ViewBag.Title = "What do you want to call this advert?"; ViewBag.ZenDeskLabel = "recruit-what-do-you-want-to-call-this-vacancy"; } diff --git a/src/Employer/Employer.Web/Views/Part1/Training/ConfirmTraining.cshtml b/src/Employer/Employer.Web/Views/Part1/Training/ConfirmTraining.cshtml index 11e67102bf..03eaa07872 100644 --- a/src/Employer/Employer.Web/Views/Part1/Training/ConfirmTraining.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Training/ConfirmTraining.cshtml @@ -2,6 +2,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.Part1.Training.ConfirmTrainingViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part1-confirm-training"; + ViewBag.Title = "Confirm apprenticeship training"; ViewBag.ZenDeskLabel = "recruit-confirm-apprenticeship-training"; } diff --git a/src/Employer/Employer.Web/Views/Part1/Training/Training.cshtml b/src/Employer/Employer.Web/Views/Part1/Training/Training.cshtml index 9ca6a2b52f..cd2c608287 100644 --- a/src/Employer/Employer.Web/Views/Part1/Training/Training.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Training/Training.cshtml @@ -4,6 +4,7 @@ @inject IOptions externalLinks; @{ ViewBag.Vpv = "/recruitment/employer/page-training"; + ViewBag.Title = "What training will the apprentice take?"; ViewBag.ZenDeskLabel = "recruit-what-training-will-the-apprentice-take"; }
diff --git a/src/Employer/Employer.Web/Views/Part1/Training/TrainingFirstVacancy.cshtml b/src/Employer/Employer.Web/Views/Part1/Training/TrainingFirstVacancy.cshtml index 2a3c98fd46..9af0c9b7f4 100644 --- a/src/Employer/Employer.Web/Views/Part1/Training/TrainingFirstVacancy.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Training/TrainingFirstVacancy.cshtml @@ -1,6 +1,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.Part1.Training.TrainingFirstVacancyViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part1-training-first-vacancy"; + ViewBag.Title = "Have you already found apprenticeship training?"; ViewBag.ZenDeskLabel = "recruit-have-you-already-found-apprenticehip-training"; }
diff --git a/src/Employer/Employer.Web/Views/Part1/Training/TrainingHelp.cshtml b/src/Employer/Employer.Web/Views/Part1/Training/TrainingHelp.cshtml index ff4d148c8f..f615ea056d 100644 --- a/src/Employer/Employer.Web/Views/Part1/Training/TrainingHelp.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Training/TrainingHelp.cshtml @@ -1,6 +1,7 @@ @using Microsoft.Extensions.Options @inject IOptions externalLinks @{ + ViewBag.Title = "Find apprenticeship training"; ViewBag.Vpv = "/recruitment/employer/page-part1-training-help"; } diff --git a/src/Employer/Employer.Web/Views/Part1/TrainingProvider/ConfirmTrainingProvider.cshtml b/src/Employer/Employer.Web/Views/Part1/TrainingProvider/ConfirmTrainingProvider.cshtml index 52a2cd7963..590281df70 100644 --- a/src/Employer/Employer.Web/Views/Part1/TrainingProvider/ConfirmTrainingProvider.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/TrainingProvider/ConfirmTrainingProvider.cshtml @@ -2,6 +2,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.Part1.TrainingProvider.ConfirmTrainingProviderViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part1-confirm-training-provider"; + ViewBag.Title = "Confirm the training provider"; ViewBag.ZenDeskLabel = "recruit-confirm-the-training-provider"; }
diff --git a/src/Employer/Employer.Web/Views/Part1/TrainingProvider/SelectTrainingProvider.cshtml b/src/Employer/Employer.Web/Views/Part1/TrainingProvider/SelectTrainingProvider.cshtml index ed15f60664..7b270f6cfd 100644 --- a/src/Employer/Employer.Web/Views/Part1/TrainingProvider/SelectTrainingProvider.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/TrainingProvider/SelectTrainingProvider.cshtml @@ -7,6 +7,7 @@ @model SelectTrainingProviderViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part1-select-training-provider"; + ViewBag.Title = "Have you found a training provider?"; ViewBag.ZenDeskLabel = "recruit-have-you-found-a-training-provider"; }
diff --git a/src/Employer/Employer.Web/Views/Part1/Wage/Wage.cshtml b/src/Employer/Employer.Web/Views/Part1/Wage/Wage.cshtml index 6ec917ead3..6ccee3f8b1 100644 --- a/src/Employer/Employer.Web/Views/Part1/Wage/Wage.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Wage/Wage.cshtml @@ -5,6 +5,7 @@ @inject IOptions externalLinks @{ ViewBag.Vpv = "/recruitment/employer/page-part1-wage"; + ViewBag.Title = "How much would you like to pay the apprentice?"; ViewBag.ZenDeskLabel = "recruit-how-much-would-you-like-to-pay-the-apprentice"; } diff --git a/src/Employer/Employer.Web/Views/Part2/Considerations/Considerations.cshtml b/src/Employer/Employer.Web/Views/Part2/Considerations/Considerations.cshtml index a666479837..e08b033700 100644 --- a/src/Employer/Employer.Web/Views/Part2/Considerations/Considerations.cshtml +++ b/src/Employer/Employer.Web/Views/Part2/Considerations/Considerations.cshtml @@ -1,6 +1,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.ConsiderationsViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part2-considerations"; + ViewBag.Title = "What else would you like the applicant to consider? (optional)"; ViewBag.ZenDeskLabel = "recruit-what-else-would-you-like-the-applicant-to-consider"; }
diff --git a/src/Employer/Employer.Web/Views/Part2/EmployerContactDetails/EmployerContactDetails.cshtml b/src/Employer/Employer.Web/Views/Part2/EmployerContactDetails/EmployerContactDetails.cshtml index d2ab7203d4..58c6fe610a 100644 --- a/src/Employer/Employer.Web/Views/Part2/EmployerContactDetails/EmployerContactDetails.cshtml +++ b/src/Employer/Employer.Web/Views/Part2/EmployerContactDetails/EmployerContactDetails.cshtml @@ -1,6 +1,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.EmployerContactDetailsViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part2-employer-contact-details"; + ViewBag.Title = "Add employer contact information (optional)"; ViewBag.ZenDeskLabel = "recruit-add-contact-information"; }
diff --git a/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualification.cshtml b/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualification.cshtml index 370cfe68e1..cc5b76380c 100644 --- a/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualification.cshtml +++ b/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualification.cshtml @@ -4,6 +4,7 @@ @model QualificationViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part2-qualification"; + ViewBag.Title = "What qualifications would you like the applicant to have?"; ViewBag.ZenDeskLabel = "recruit-what-qualifications-would-you-like-the-applicant-to-have"; }
diff --git a/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualifications.cshtml b/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualifications.cshtml index 5aad1bd0e5..89c329131c 100644 --- a/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualifications.cshtml +++ b/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualifications.cshtml @@ -1,6 +1,7 @@ @using Esfa.Recruit.Shared.Web.Mappers @model Esfa.Recruit.Employer.Web.ViewModels.Part2.Qualifications.QualificationsViewModel @{ + ViewBag.Title = "Qualifications"; ViewBag.Vpv = "/recruitment/employer/page-part2-qualifications"; } diff --git a/src/Employer/Employer.Web/Views/Part2/ShortDescription/ShortDescription.cshtml b/src/Employer/Employer.Web/Views/Part2/ShortDescription/ShortDescription.cshtml index 341f5d2dd5..33ea338f01 100644 --- a/src/Employer/Employer.Web/Views/Part2/ShortDescription/ShortDescription.cshtml +++ b/src/Employer/Employer.Web/Views/Part2/ShortDescription/ShortDescription.cshtml @@ -1,6 +1,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.Part2.ShortDescription.ShortDescriptionViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part2-short-description"; + ViewBag.Title = "Short description of the apprenticeship"; ViewBag.ZenDeskLabel = "recruit-short-description-of-the-apprenticeship"; } diff --git a/src/Employer/Employer.Web/Views/Part2/Skills/Skills.cshtml b/src/Employer/Employer.Web/Views/Part2/Skills/Skills.cshtml index 4c16c702ba..943ec0bef4 100644 --- a/src/Employer/Employer.Web/Views/Part2/Skills/Skills.cshtml +++ b/src/Employer/Employer.Web/Views/Part2/Skills/Skills.cshtml @@ -3,6 +3,7 @@ @model SkillsViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part2-skills"; + ViewBag.Title = "What skills and personal qualities would you like the applicant to have?"; ViewBag.ZenDeskLabel = "recruit-which-skills-and-personal-qualities-would-you-like-the-applicant-to-have"; } @@ -15,7 +16,7 @@

@Model.Title - Which skills and personal qualities would you like the applicant to have? + What skills and personal qualities would you like the applicant to have?

diff --git a/src/Employer/Employer.Web/Views/Part2/VacancyDescription/VacancyDescription.cshtml b/src/Employer/Employer.Web/Views/Part2/VacancyDescription/VacancyDescription.cshtml index 1ee2485603..2e5b20fcb9 100644 --- a/src/Employer/Employer.Web/Views/Part2/VacancyDescription/VacancyDescription.cshtml +++ b/src/Employer/Employer.Web/Views/Part2/VacancyDescription/VacancyDescription.cshtml @@ -1,6 +1,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.Part2.VacancyDescription.VacancyDescriptionViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-part2-vacancy-description"; + ViewBag.Title = "Description of the apprenticeship"; ViewBag.ZenDeskLabel = "recruit-description-of-the-apprenticeship"; }
diff --git a/src/Employer/Employer.Web/Views/Shared/_EditVacancyPartial.cshtml b/src/Employer/Employer.Web/Views/Shared/_EditVacancyPartial.cshtml index a7904d952d..8ceb6185e7 100644 --- a/src/Employer/Employer.Web/Views/Shared/_EditVacancyPartial.cshtml +++ b/src/Employer/Employer.Web/Views/Shared/_EditVacancyPartial.cshtml @@ -5,7 +5,7 @@

@Model.ShortDescription

-

Closing Date

+

Closing date

@Model.DisplayableClosingDate

Edit
@@ -105,8 +105,10 @@

@Model.EmployerDescription

Employer

@Model.EmployerName

- - This vacancy meets disability confident requirements +
+ + This advert meets disability confident requirements +

Website

Website will not be shown as the employer is anonymous
diff --git a/src/Employer/Employer.Web/Views/Shared/_Layout.cshtml b/src/Employer/Employer.Web/Views/Shared/_Layout.cshtml index 8e7c22aeda..2d6a488c0e 100644 --- a/src/Employer/Employer.Web/Views/Shared/_Layout.cshtml +++ b/src/Employer/Employer.Web/Views/Shared/_Layout.cshtml @@ -15,9 +15,9 @@ public string GetTitle() { - const string defaultTitle = "Recruit an Apprentice"; + const string defaultTitle = "Recruit an Apprentice - Apprenticeship service - GOV.UK"; if (ViewBag.Title != null) - return $"{ViewBag.Title}"; + return $"{ViewBag.Title} - Apprenticeship service - GOV.UK"; return defaultTitle; } diff --git a/src/Employer/Employer.Web/Views/Shared/_LayoutWithoutNavigation.cshtml b/src/Employer/Employer.Web/Views/Shared/_LayoutWithoutNavigation.cshtml index 6df0d7053a..9abd0d7d82 100644 --- a/src/Employer/Employer.Web/Views/Shared/_LayoutWithoutNavigation.cshtml +++ b/src/Employer/Employer.Web/Views/Shared/_LayoutWithoutNavigation.cshtml @@ -15,9 +15,9 @@ public bool ParseHideNavFromViewBag() public string GetTitle() { - const string defaultTitle = "Recruit an Apprentice"; + const string defaultTitle = "Recruit an Apprentice - Apprenticeship service - GOV.UK"; if (ViewBag.Title != null) - return $"{defaultTitle} | {ViewBag.Title}"; + return $"{ViewBag.Title} - Apprenticeship service - GOV.UK"; return defaultTitle; } diff --git a/src/Employer/Employer.Web/Views/Shared/_NonEditableVacancyDisplayPartial.cshtml b/src/Employer/Employer.Web/Views/Shared/_NonEditableVacancyDisplayPartial.cshtml index 26e75d3140..bc20ddecf6 100644 --- a/src/Employer/Employer.Web/Views/Shared/_NonEditableVacancyDisplayPartial.cshtml +++ b/src/Employer/Employer.Web/Views/Shared/_NonEditableVacancyDisplayPartial.cshtml @@ -5,7 +5,7 @@

@Model.ShortDescription

-

Closing Date

+

Closing date

@Model.ClosingDate

@@ -103,8 +103,10 @@

@Model.EmployerDescription

Employer

@Model.EmployerName

- - This vacancy meets disability confident requirements +
+ + This advert meets disability confident requirements +

Website

Website will not be shown as the employer is anonymous
diff --git a/src/Employer/Employer.Web/Views/Shared/_ReviewSummaryPartial.cshtml b/src/Employer/Employer.Web/Views/Shared/_ReviewSummaryPartial.cshtml index 9b54ac2540..d800c197e9 100644 --- a/src/Employer/Employer.Web/Views/Shared/_ReviewSummaryPartial.cshtml +++ b/src/Employer/Employer.Web/Views/Shared/_ReviewSummaryPartial.cshtml @@ -5,7 +5,7 @@ Edits needed
-

Call us on @RecruitViewConstants.HelpdeskPhoneNumber and select the employer option if you need to discuss any of our vacancy review comments.

+

Call us on @RecruitViewConstants.HelpdeskPhoneNumber and select the employer option if you need to discuss any of our advert review comments.

@Model.ReviewerComments

    @foreach (var fieldIndicator in Model.FieldIndicators) diff --git a/src/Employer/Employer.Web/Views/Shared/_VacancySummaryDisplayPartial.cshtml b/src/Employer/Employer.Web/Views/Shared/_VacancySummaryDisplayPartial.cshtml index cc29d57ff7..bbb1b1bdeb 100644 --- a/src/Employer/Employer.Web/Views/Shared/_VacancySummaryDisplayPartial.cshtml +++ b/src/Employer/Employer.Web/Views/Shared/_VacancySummaryDisplayPartial.cshtml @@ -23,12 +23,12 @@
    - This vacancy meets disability confident requirements + This advert meets disability confident requirements
\ No newline at end of file diff --git a/src/Employer/Employer.Web/Views/VacancyManage/EditVacancy.cshtml b/src/Employer/Employer.Web/Views/VacancyManage/EditVacancy.cshtml index f37ea9f435..e0679417e2 100644 --- a/src/Employer/Employer.Web/Views/VacancyManage/EditVacancy.cshtml +++ b/src/Employer/Employer.Web/Views/VacancyManage/EditVacancy.cshtml @@ -1,6 +1,7 @@ @model Esfa.Recruit.Employer.Web.ViewModels.VacancyManage.EditVacancyViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-edit-vacancy"; + ViewBag.Title = "Edit advert"; }
\ No newline at end of file diff --git a/src/Employer/Employer.Web/Views/VacancyPreview/VacancyPreview.cshtml b/src/Employer/Employer.Web/Views/VacancyPreview/VacancyPreview.cshtml index aea8e75d9f..7530af2218 100644 --- a/src/Employer/Employer.Web/Views/VacancyPreview/VacancyPreview.cshtml +++ b/src/Employer/Employer.Web/Views/VacancyPreview/VacancyPreview.cshtml @@ -3,6 +3,7 @@ @using Esfa.Recruit.Shared.Web.Mappers @{ ViewBag.Vpv = "/recruitment/employer/page-vacancy-preview"; + ViewBag.Title = "Preview your advert"; } @model VacancyPreviewViewModel @@ -336,6 +337,8 @@ Disability Confident (optional) + This advert meets disability confident requirements +

This advert is not Disability Confident
This will not appear on the advert when it goes live

@EditLink(RouteNames.Dates_Get, Model.TrainingSectionState, "disability confident", "link-standard", new { wizard = false }) diff --git a/src/Employer/Employer.Web/Views/VacancyView/Approved.cshtml b/src/Employer/Employer.Web/Views/VacancyView/Approved.cshtml index 3a25125471..67a457c659 100644 --- a/src/Employer/Employer.Web/Views/VacancyView/Approved.cshtml +++ b/src/Employer/Employer.Web/Views/VacancyView/Approved.cshtml @@ -1,6 +1,7 @@ @model ApprovedVacancyViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-vacancy-approved"; + ViewBag.Title = "View your advert"; }
diff --git a/src/Employer/Employer.Web/Views/VacancyView/Closed.cshtml b/src/Employer/Employer.Web/Views/VacancyView/Closed.cshtml index 0e2e951f1f..08b2fc1538 100644 --- a/src/Employer/Employer.Web/Views/VacancyView/Closed.cshtml +++ b/src/Employer/Employer.Web/Views/VacancyView/Closed.cshtml @@ -1,6 +1,7 @@ @model ClosedVacancyViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-vacancy-closed"; + ViewBag.Title = "View your advert"; }
diff --git a/src/Employer/Employer.Web/Views/VacancyView/ClosedWithApplications.cshtml b/src/Employer/Employer.Web/Views/VacancyView/ClosedWithApplications.cshtml index 83649d5558..aee872b312 100644 --- a/src/Employer/Employer.Web/Views/VacancyView/ClosedWithApplications.cshtml +++ b/src/Employer/Employer.Web/Views/VacancyView/ClosedWithApplications.cshtml @@ -1,6 +1,7 @@ @model ClosedVacancyViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-vacancy-closed-with-applications"; + ViewBag.Title = "View your advert"; } diff --git a/src/Employer/Employer.Web/Views/VacancyView/FullVacancyView.cshtml b/src/Employer/Employer.Web/Views/VacancyView/FullVacancyView.cshtml index 342e33067a..01498e3689 100644 --- a/src/Employer/Employer.Web/Views/VacancyView/FullVacancyView.cshtml +++ b/src/Employer/Employer.Web/Views/VacancyView/FullVacancyView.cshtml @@ -2,6 +2,7 @@ @{ Layout = LayoutNames.LayoutWithoutNavigation; ViewBag.Vpv = "/recruitment/employer/page-full-vacancy-view"; + ViewBag.Title = "View your advert"; }
diff --git a/src/Employer/Employer.Web/Views/VacancyView/Live.cshtml b/src/Employer/Employer.Web/Views/VacancyView/Live.cshtml index 45dba5d251..1dccb56c5f 100644 --- a/src/Employer/Employer.Web/Views/VacancyView/Live.cshtml +++ b/src/Employer/Employer.Web/Views/VacancyView/Live.cshtml @@ -1,6 +1,7 @@ @model LiveVacancyViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-vacancy-live"; + ViewBag.Title = "View your advert"; }
diff --git a/src/Employer/Employer.Web/Views/VacancyView/LiveWithApplications.cshtml b/src/Employer/Employer.Web/Views/VacancyView/LiveWithApplications.cshtml index 3ee0a28762..6e13de2c78 100644 --- a/src/Employer/Employer.Web/Views/VacancyView/LiveWithApplications.cshtml +++ b/src/Employer/Employer.Web/Views/VacancyView/LiveWithApplications.cshtml @@ -1,6 +1,7 @@ @model LiveVacancyViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-vacancy-live-with-applications"; + ViewBag.Title = "View your advert"; } diff --git a/src/Employer/Employer.Web/Views/VacancyView/Referred.cshtml b/src/Employer/Employer.Web/Views/VacancyView/Referred.cshtml index 626b2cd708..c4434546a6 100644 --- a/src/Employer/Employer.Web/Views/VacancyView/Referred.cshtml +++ b/src/Employer/Employer.Web/Views/VacancyView/Referred.cshtml @@ -1,6 +1,7 @@ @model ReferredVacancyViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-vacancy-referred"; + ViewBag.Title = "View your advert"; }
diff --git a/src/Employer/Employer.Web/Views/VacancyView/Submitted.cshtml b/src/Employer/Employer.Web/Views/VacancyView/Submitted.cshtml index a3840ec891..5c0b790719 100644 --- a/src/Employer/Employer.Web/Views/VacancyView/Submitted.cshtml +++ b/src/Employer/Employer.Web/Views/VacancyView/Submitted.cshtml @@ -1,6 +1,7 @@ @model SubmittedVacancyViewModel @{ ViewBag.Vpv = "/recruitment/employer/page-vacancy-submitted"; + ViewBag.Title = "View your advert"; }
diff --git a/src/Provider/Provider.Web/Views/Part2/Skills/Skills.cshtml b/src/Provider/Provider.Web/Views/Part2/Skills/Skills.cshtml index e9a769c554..b442ff3097 100644 --- a/src/Provider/Provider.Web/Views/Part2/Skills/Skills.cshtml +++ b/src/Provider/Provider.Web/Views/Part2/Skills/Skills.cshtml @@ -3,6 +3,7 @@ @model SkillsViewModel @{ + ViewBag.Title = "What skills and personal qualities would you like the applicant to have?"; ViewBag.GaData.Vpv = "/recruitment/provider/page-vacancy-skills"; } @@ -15,7 +16,7 @@

@Model.Title - Which skills and personal qualities would you like the applicant to have? + What skills and personal qualities would you like the applicant to have?

diff --git a/src/Shared/Recruit.Shared.Web/ViewModels/ErrorMessages.cs b/src/Shared/Recruit.Shared.Web/ViewModels/ErrorMessages.cs index f5a3920d4f..f8d1acdc1b 100644 --- a/src/Shared/Recruit.Shared.Web/ViewModels/ErrorMessages.cs +++ b/src/Shared/Recruit.Shared.Web/ViewModels/ErrorMessages.cs @@ -2,12 +2,12 @@ { public class ErrorMessages { - public const string VacancyCannotBeViewed = "The vacancy '{0}' can't be viewed."; - public const string VacancyNotAvailableForEditing = "The vacancy '{0}' has been edited by one of your colleagues. Your changes have not been saved."; - public const string VacancyNotAvailableForClosing = "The vacancy '{0}' cannot be closed as it is not currently published."; - public const string VacancyNotAvailableForCloning = "The vacancy '{0}' cannot be cloned."; - public const string VacancyNotSubmittedSuccessfully = "The vacancy '{0}' has not been submitted successfully."; - public const string VacancyDatesCannotBeEdited = "The dates of vacancy '{0}' can't be edited."; - public const string CannotCloneVacancyWithSameDates = "The vacancy '{0}' has a closing date or start date that is in the past."; + public const string VacancyCannotBeViewed = "The advert '{0}' can't be viewed."; + public const string VacancyNotAvailableForEditing = "The advert '{0}' has been edited by one of your colleagues. Your changes have not been saved."; + public const string VacancyNotAvailableForClosing = "The advert '{0}' cannot be closed as it is not currently published."; + public const string VacancyNotAvailableForCloning = "The advert '{0}' cannot be cloned."; + public const string VacancyNotSubmittedSuccessfully = "The advert '{0}' has not been submitted successfully."; + public const string VacancyDatesCannotBeEdited = "The dates of advert '{0}' can't be edited."; + public const string CannotCloneVacancyWithSameDates = "The advert '{0}' has a closing date or start date that is in the past."; } } diff --git a/src/Shared/Recruit.Shared.Web/Views/Shared/_DisabilityConfidentPartial.cshtml b/src/Shared/Recruit.Shared.Web/Views/Shared/_DisabilityConfidentPartial.cshtml index 82cd1011de..67a29a3e7c 100644 --- a/src/Shared/Recruit.Shared.Web/Views/Shared/_DisabilityConfidentPartial.cshtml +++ b/src/Shared/Recruit.Shared.Web/Views/Shared/_DisabilityConfidentPartial.cshtml @@ -2,10 +2,10 @@
-

Disabled candidates are generally guaranteed an interview if you meet the minimum requirements for this vacancy. Contact the employer for full details.

+

Disabled candidates who meet the minimum requirements for this apprenticeship are generally guaranteed an interview. Contact the employer for full details.

Employers may need to limit the number of interviews offered to both disabled and non-disabled people if they receive high numbers of applications.