-
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.
Add version of the dashboard showing no vaccinations recorded yet (#142)
- Loading branch information
1 parent
71259eb
commit 7b7041a
Showing
2 changed files
with
83 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{% extends 'layout.html' %} | ||
|
||
{% block pageTitle %} | ||
{{ currentOrganisation.name }} – Home | ||
{% endblock %} | ||
|
||
{% set currentSection = "home" %} | ||
|
||
|
||
|
||
|
||
{% block content %} | ||
|
||
|
||
<div class="nhsuk-grid-row"> | ||
<div class="nhsuk-grid-column-two-thirds"> | ||
<h1 class="nhsuk-heading-l nhsuk-u-margin-bottom-6">{{ currentOrganisation.name }}</h1> | ||
|
||
<p>You have not yet recorded a vaccination.</p> | ||
|
||
<p class="nhsuk-body"><a href="/vaccines/choose-site">Add vaccines</a></p> | ||
|
||
<p class="nhsuk-body"><a href="/user-admin/add-user">Add users</a></p> | ||
|
||
<p class="nhsuk-body"><a href="/find-a-patient">Find a patient</a></p> | ||
|
||
<p>Find help and guidance at <a href="/reports">guide.ravs.england.nhs.uk</a></p> | ||
|
||
|
||
|
||
<h2 class="nhsuk-heading-m">Total vaccinations</h2> | ||
|
||
</div> | ||
</div> | ||
|
||
|
||
<ul class="nhsuk-grid-row nhsuk-card-group"> | ||
|
||
<li class="nhsuk-grid-column-one-quarter nhsuk-card-group__item"> | ||
{% set cardHtml %} | ||
<p class="nhsuk-heading-xl nhsuk-u-font-size-64 nhsuk-u-margin-bottom-1">0</p> | ||
Today | ||
{% endset %} | ||
|
||
{{ card({ | ||
headingHtml: cardHtml | ||
}) }} | ||
</li> | ||
|
||
<li class="nhsuk-grid-column-one-quarter nhsuk-card-group__item"> | ||
{% set cardHtml %} | ||
<p class="nhsuk-heading-xl nhsuk-u-font-size-64 nhsuk-u-margin-bottom-1">0</p> | ||
Past 7 days | ||
{% endset %} | ||
|
||
{{ card({ | ||
headingHtml: cardHtml | ||
}) }} | ||
</li> | ||
|
||
|
||
<li class="nhsuk-grid-column-one-quarter nhsuk-card-group__item"> | ||
{% set cardHtml %} | ||
<p class="nhsuk-heading-xl nhsuk-u-font-size-64 nhsuk-u-margin-bottom-1">0</p> | ||
November so far | ||
{% endset %} | ||
|
||
{{ card({ | ||
headingHtml: cardHtml | ||
}) }} | ||
</li> | ||
|
||
</ul> | ||
|
||
|
||
</div> | ||
</div> | ||
{% endblock %} |