Skip to content

Commit

Permalink
CON-2505 Adds back button
Browse files Browse the repository at this point in the history
  • Loading branch information
ben1stone-leftdfe committed Oct 26, 2020
1 parent 94ce5b6 commit 1219fcb
Showing 1 changed file with 32 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,39 +9,39 @@
}

<div class="das-panel das-panel--featured das-!-text-align-left">
<h1 class="das-panel__heading govuk-!-margin-top-0">
Changing training provider
</h1>
<h1 class="das-panel__heading govuk-!-margin-top-0">
Changing training provider
</h1>
<div class="govuk-!-width-two-thirds das-panel__body">

@if (Model.ApprenticeshipStatus != ApprenticeshipStatus.Stopped)
{
<div class="govuk-warning-text">
<span class="govuk-warning-text__icon das-warning-text__icon--blue das-warning-text__icon--valign-middle" aria-hidden="true">!</span>
<strong class="govuk-warning-text__text das-!-colour-inherit">
<span class="govuk-warning-text__assistive">Warning</span>
When you change an apprentice's training provider, their apprenticeship record with the current training provider will be stopped.
</strong>
</div>
<div class="govuk-warning-text">
<span class="govuk-warning-text__icon das-warning-text__icon--blue das-warning-text__icon--valign-middle" aria-hidden="true">!</span>
<strong class="govuk-warning-text__text das-!-colour-inherit">
<span class="govuk-warning-text__assistive">Warning</span>
When you change an apprentice's training provider, their apprenticeship record with the current training provider will be stopped.
</strong>
</div>
}


<p class="govuk-body das-!-colour-inherit">
Before you request this change, you must contact the new training provider to agree the new training dates and price.
</p>
<p class="govuk-body das-!-colour-inherit">
Before you request this change, you must contact the new training provider to agree the new training dates and price.
</p>
<p class="govuk-body das-!-colour-inherit">
You should only change your apprentice's training provider if:
</p>
<ul class="govuk-list govuk-list--bullet das-!-colour-inherit">
<li>
you're not happy with their performance
</li>
<li>
they've stopped delivering the apprentice's training course
</li>
<li>
they're shutting down or have already shut down
</li>
</ul>
You should only change your apprentice's training provider if:
</p>
<ul class="govuk-list govuk-list--bullet das-!-colour-inherit">
<li>
you're not happy with their performance
</li>
<li>
they've stopped delivering the apprentice's training course
</li>
<li>
they're shutting down or have already shut down
</li>
</ul>
</div>

@if (Model.ApprenticeshipStatus != ApprenticeshipStatus.Stopped)
Expand All @@ -57,3 +57,8 @@
<a class="das-panel__link" href="@LinkGenerator.EmployerHome(Model.AccountHashedId)">Cancel and return to account home</a>
</p>
</div>

@section Back
{
<div class="das-js-back-link"></div>
}

0 comments on commit 1219fcb

Please sign in to comment.