Skip to content

Commit 7bb65c9

Browse files
authored
Add page titles and other minor changes to Records (#264)
On Record landing page, changed H1 and page title to 'Records'
1 parent 5778127 commit 7bb65c9

13 files changed

+27
-20
lines changed

app/views/find-a-record/batch.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'layout.html' %}
22

33
{% block pageTitle %}
4-
Find a record
4+
Which batch was used?
55
{% endblock %}
66

77
{% set currentSection = "find-a-record" %}

app/views/find-a-record/choose-dates.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'layout.html' %}
22

33
{% block pageTitle %}
4-
Find a record
4+
When was the vaccination?
55
{% endblock %}
66

77
{% set currentSection = "find-a-record" %}

app/views/find-a-record/choose-vaccines.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'layout.html' %}
22

33
{% block pageTitle %}
4-
Find a record
4+
Which vaccine was it?
55
{% endblock %}
66

77
{% set currentSection = "find-a-record" %}
@@ -186,9 +186,9 @@
186186

187187
{% if vaccination.repeatPatient == 'yes' and vaccination.patientName %}
188188

189-
{% set question = ("Which vaccine did you give?" + vaccination.patientName + "?" if vaccination.vaccinationToday == 'yes' else "Which vaccine did you give " + vaccination.patientName + "?") %}
189+
{% set question = ("Which vaccine was it?" + vaccination.patientName + "?" if vaccination.vaccinationToday == 'yes' else "Which vaccine was it?" + vaccination.patientName + "?") %}
190190
{% else %}
191-
{% set question = ("Which vaccine did you give?" if vaccination.vaccinationToday == 'yes' else "Which vaccine did you give?") %}
191+
{% set question = ("Which vaccine was it?" if vaccination.vaccinationToday == 'yes' else "Which vaccine was it?") %}
192192
{% endif %}
193193

194194
{{ radios({

app/views/find-a-record/consent.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'layout.html' %}
22

33
{% block pageTitle %}
4-
Vaccines
4+
Who gave consent?
55
{% endblock %}
66

77
{% set currentSection = "consent" %}

app/views/find-a-record/delete.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'layout.html' %}
22

33
{% block pageTitle %}
4-
Add batch
4+
Are you sure you want to delete this record?
55
{% endblock %}
66

77
{% set currentSection = "find-a-record" %}

app/views/find-a-record/delivery-team.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'layout.html' %}
22

33
{% block pageTitle %}
4-
Vaccines
4+
Which team was it?
55
{% endblock %}
66

77
{% set currentSection = "vaccinate" %}
@@ -25,7 +25,7 @@
2525
name: "deliveryTeam",
2626
fieldset: {
2727
legend: {
28-
text: "Which team were you working with?",
28+
text: "Which team was it?",
2929
classes: "nhsuk-fieldset__legend--l",
3030
isPageHeading: true
3131
}

app/views/find-a-record/eligibility.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'layout.html' %}
22

33
{% block pageTitle %}
4-
Vaccines
4+
Why was the patient eligible for the vaccine?
55
{% endblock %}
66

77
{% set currentSection = "find-a-record" %}

app/views/find-a-record/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'layout.html' %}
22

33
{% block pageTitle %}
4-
Find a record
4+
Records
55
{% endblock %}
66

77
{% set currentSection = "find-a-record" %}
@@ -10,7 +10,7 @@
1010
<div class="nhsuk-grid-row">
1111
<div class="nhsuk-grid-column-full">
1212

13-
<h1 class="nhsuk-heading-l">Find a record</h1>
13+
<h1 class="nhsuk-heading-l">Records</h1>
1414
<p class="nhsuk-body-l">Search for a record you want to view, edit or delete.</p>
1515

1616
<form action="/find-a-record/answer-search" method="post" novalidate>

app/views/find-a-record/injection-site.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'layout.html' %}
22

33
{% block pageTitle %}
4-
Find a record
4+
Where was the injection given?
55
{% endblock %}
66

77
{% set currentSection = "find-a-record" %}
@@ -64,7 +64,7 @@
6464
name: "injectionSite",
6565
fieldset: {
6666
legend: {
67-
text: "Where did you give the injection?",
67+
text: "Where was the injection given?",
6868
classes: "nhsuk-fieldset__legend--l",
6969
isPageHeading: true
7070
}

app/views/find-a-record/patient-estimated-due-date.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'layout.html' %}
22

33
{% block pageTitle %}
4-
Vaccines
4+
What is the patient's estimated due date?
55
{% endblock %}
66

77
{% set currentSection = "find-a-record" %}

0 commit comments

Comments
 (0)