-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #915 from DFE-Digital/bugs/fix-help-links-with-env…
…-var Added env var for support links
- Loading branch information
Showing
3 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...FreeSchoolProjects/Dfe.ManageFreeSchoolProjects/Pages/Errors/_ProblemWithTheSystem.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
@model Dfe.ManageFreeSchoolProjects.Pages.Errors.IndexModel | ||
@inject Microsoft.Extensions.Configuration.IConfiguration Configuration | ||
|
||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<h1 class="govuk-heading-l" id="error-heading">@Model.ErrorMessage</h1> | ||
<p class="govuk-body"> | ||
Try again later. | ||
</p> | ||
<p class="govuk-body"> | ||
If the system is still not working, <a href="https://forms.office.com/Pages/ResponsePage.aspx?id=yXfS-grGoU2187O4s0qC-X7F89QcWu5CjlJXwF0TVktUMTFEUVRCVVg4WlMyS1AzUEJSUDAySlhQTCQlQCN0PWcu" class="govuk-link">get help with a Regions Group system.</a> | ||
If the system is still not working, <a href="@Configuration["SupportLink"]" class="govuk-link">get help with a Regions Group system.</a> | ||
</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters