Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Feature/89407 change set transfer dates (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
acarbutt authored Mar 16, 2022
1 parent 01cf2f6 commit 915e795
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Frontend/Pages/Projects/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</li>
<li class="moj-task-list__item">
<span class="moj-task-list__task-name">
<a class="govuk-link" aria-describedby="dates" asp-page="/Projects/TransferDates/Index" asp-route-urn="@Model.Urn" data-test="transfer-dates">Set transfer dates</a>
<a class="govuk-link" aria-describedby="dates" asp-page="/Projects/TransferDates/Index" asp-route-urn="@Model.Urn" data-test="transfer-dates">Expected transfer dates</a>
</span><projectstatus id="dates" status="@Model.TransferDatesStatus"></projectstatus>
</li>
<li class="moj-task-list__item">
Expand Down
4 changes: 2 additions & 2 deletions Frontend/Pages/Projects/TransferDates/AdvisoryBoard.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


@{
ViewBag.Title = (!ViewData.ModelState.IsValid ? "Error: " : "") + "Set Advisory Board date";
ViewBag.Title = (!ViewData.ModelState.IsValid ? "Error: " : "") + "Advisory Board date";
Layout = "_Layout";
var formClasses = !ViewData.ModelState.IsValid ? "govuk-form-group--error" : "";
var inputError = ViewData.ModelState.GetFieldValidationState(nameof(Model.AdvisoryBoardViewModel.AdvisoryBoardDate.Date.Day)) == ModelValidationState.Invalid ? "govuk-input--error" : "";
Expand Down Expand Up @@ -32,7 +32,7 @@
<span class="govuk-caption-l">
@Model.IncomingTrustName
</span>
Set Advisory Board date
Advisory Board date
</h1>
</legend>
<div id="set-ab-date-hint" class="govuk-hint">
Expand Down
6 changes: 3 additions & 3 deletions Frontend/Pages/Projects/TransferDates/Index.cshtml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@page "/project/{urn}/tranfer-dates"
@page "/project/{urn}/transfer-dates"
@model Frontend.Pages.Projects.TransferDates.Index

@{
ViewBag.Title = "Set transfer dates";
ViewBag.Title = "Expected transfer dates";
Layout = "_Layout";
}

Expand All @@ -17,7 +17,7 @@
Project reference: @Model.ProjectReference
</span>
<h1 class="govuk-heading-l">
Set transfer dates
Expected transfer dates
</h1>
<hr class="govuk-section-break govuk-section-break--l">
</div>
Expand Down
2 changes: 1 addition & 1 deletion Frontend/Pages/Shared/_TransferDatesSummary.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key">
Set Advisory Board date
Advisory Board date
</dt>
<dd class="govuk-summary-list__value">
<datesummary value="@Model.AdvisoryBoardDate" has-date="@Model.HasAdvisoryBoardDate"></datesummary>
Expand Down
2 changes: 1 addition & 1 deletion Frontend/Pages/TaskList/HtbDocument/Preview.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<section class="app-summary-card govuk-!-margin-bottom-7">
<header class="app-summary-card__header">
<h2 class="app-summary-card__title">
Set transfer dates
Expected transfer dates
</h2>
</header>
<div class="app-summary-card__body">
Expand Down

0 comments on commit 915e795

Please sign in to comment.