Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
314e376
Update and rename no-patient-record.html to no-vaccination-history.html
Anna-Sutton Mar 17, 2026
a75e725
Update and rename some-patient-record.html to partial-vaccination-his…
Anna-Sutton Mar 17, 2026
e4f84cd
Update and rename PDS-service.html to no-patient-details.html
Anna-Sutton Mar 17, 2026
97751d9
Added a button for 'Try again' to no-patient-details.html
Anna-Sutton Mar 17, 2026
1a1c363
Added link to guidance page on 500 error
Anna-Sutton Mar 17, 2026
6894e4a
Update to 429.html
Anna-Sutton Mar 17, 2026
036563b
Added a Try again button to 429.html
Anna-Sutton Mar 17, 2026
cdaa5c4
Rename 429.html to rate-limit.html
Anna-Sutton Mar 17, 2026
0e86622
Update no-patient-details.html
Anna-Sutton Mar 17, 2026
830d303
Update no-patient-details.html
Anna-Sutton Mar 17, 2026
74f51fc
Update no-patient-details.html
Anna-Sutton Mar 17, 2026
9401c4e
Update no-patient-details.html
Anna-Sutton Mar 17, 2026
92b8043
Update to error msgs on index.html
Anna-Sutton Mar 17, 2026
e5996d0
Update rate-limit.html
Anna-Sutton Mar 17, 2026
0e69ef4
Changed primary button to Nunjucks version on partial-vaccination-his…
Anna-Sutton Mar 18, 2026
5653e96
Changed primary button to Nunjucks version on no-vaccination-history.…
Anna-Sutton Mar 18, 2026
34126fd
Changed button to Nunjucks version on no-patient-details.html
Anna-Sutton Mar 18, 2026
dee97e0
Changed secondary button to Nunjucks version on no-vaccination-histor…
Anna-Sutton Mar 18, 2026
d27a155
Changed secondary button to Nunjucks version on partial-vaccination-h…
Anna-Sutton Mar 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions app/views/errors/429.html

This file was deleted.

2 changes: 1 addition & 1 deletion app/views/errors/500.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h1 class="nhsuk-heading-l">{{ pageName }}</h1>

<p>Try again later.</p>

<p>If you urgently need to record a vaccination, <a href="#">download our paper form</a>.</p>
<p>If you urgently need to record a vaccination, <a href="https://guide.ravs.england.nhs.uk/service-unavailable/">download our paper form</a>.</p>


</div>
Expand Down
28 changes: 28 additions & 0 deletions app/views/errors/no-patient-details.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{% extends 'layout.html' %}

{% set pageName = "There is a temporary problem getting the patient's details" %}


{% block beforeContent %}
{{ backLink({ href: "/record-vaccinations/patient" }) }}
{% endblock %}


{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">
<h1 class="nhsuk-heading-l">{{ pageName }}</h1>

<p>Try again. Or if the problem persists and you urgently need to record a vaccination, <a href="https://guide.ravs.england.nhs.uk/service-unavailable/">download our paper form</a>.</p>

{% from "button/macro.njk" import button %}

{{ button({
text: "Try again"
}) }}

</div>
</div>


{% endblock %}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends 'layout.html' %}

{% set pageName = "There was a problem getting Jodie Brown's vaccination history" %}
{% set pageName = "There is a temporary problem getting Jodie Brown's vaccination history" %}


{% block beforeContent %}
Expand All @@ -19,18 +19,21 @@ <h1 class="nhsuk-heading-l">{{ pageName }}</h1>
<p>You will not be able to see the patient's vaccination history.</p>


<button class="nhsuk-button" data-module="nhsuk-button" type="submit">
Try again
</button>
{% from "button/macro.njk" import button %}

{{ button({
text: "Try again"
}) }}

&nbsp; &nbsp;

<button class="nhsuk-button nhsuk-button--secondary" data-module="nhsuk-button" type="submit">
Continue anyway
</button>
&nbsp; &nbsp;

{% from "button/macro.njk" import button %}

{{ button({
text: "Continue anyway",
classes: "nhsuk-button--secondary"
}) }}

</div>
</div>
Expand Down
42 changes: 42 additions & 0 deletions app/views/errors/partial-vaccination-history.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{% extends 'layout.html' %}

{% set pageName = "There is a temporary problem getting Jodie Brown's vaccination history" %}


{% block beforeContent %}
{{ backLink({ href: "/record-vaccinations/patient" }) }}
{% endblock %}

{% set currentSection = "vaccinate" %}


{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">
<h1 class="nhsuk-heading-l">{{ pageName }}</h1>


<p>You may not see all the vaccination records that are usually shown in this service.</p>

{% from "button/macro.njk" import button %}

{{ button({
text: "Try again"
}) }}

&nbsp; &nbsp;

{% from "button/macro.njk" import button %}

{{ button({
text: "Continue anyway",
classes: "nhsuk-button--secondary"
}) }}



</div>
</div>


{% endblock %}
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,14 @@

{% set pageName = "Sorry, there is a problem with the service" %}


{% block beforeContent %}
{{ backLink({ href: "/record-vaccinations/patient" }) }}
{% endblock %}


{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">
<h1 class="nhsuk-heading-l">{{ pageName }}</h1>

<p>We could not get the patient's details. Try again later.</p>
<p>Try again later.</p>

<p>If you urgently need to record a vaccination, <a href="https://guide.ravs.england.nhs.uk/service-unavailable/">download our paper form</a>.</p>


</div>
Expand Down
38 changes: 0 additions & 38 deletions app/views/errors/some-patient-record.html

This file was deleted.

5 changes: 4 additions & 1 deletion app/views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,11 @@ <h2>Error pages</h2>
<ul>
<li><a href="/errors/500">Sorry, there is a problem with the service (500 error)</a></li>
<li><a href="/errors/503">Service unavailable (503 error)</a></li>
<li><a href="/errors/429">Rate limited (429 error)</a></li>
<li><a href="/errors/rate-limit">Rate limited (429 error)</a></li>
<li><a href="/auth/user-not-recognised">User not recognised (after a successful 3rd party login)</a></li>
<li><a href="/errors/no-patient-details">We cannot show patient details</a></li>
<li><a href="/errors/no-vaccination-history">We cannot show vaccination history</a></li>
<li><a href="/errors/partial-vaccination-history">We cannot show some vaccination history</a></li>
</ul>

<h2>Messaging</h2>
Expand Down