Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
36 changes: 34 additions & 2 deletions lung_cancer_screening/questions/jinja2/non_smoker_exit.jinja
Original file line number Diff line number Diff line change
@@ -1,13 +1,45 @@
{% extends 'layout.jinja' %}
{% from 'nhsuk/components/button/macro.jinja' import button %}
{% from 'nhsuk/components/input/macro.jinja' import input %}
{% from 'nhsuk/components/back-link/macro.jinja' import backLink %}

{% block beforeContent %}
<nav>
{{
backLink({
"href": url("questions:have_you_ever_smoked"),
"text": "Back"
})
}}
</nav>
{% endblock beforeContent %}

{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">
<h2 class="title">You do not need an NHS lung health check</h2>
<h2 class="title">You are not eligible for lung cancer screening</h2>

<p>NHS lung cancer screening is for people who have smoked or are current smokers.</p>

<div class="nhsuk-do-dont-list">
<h3 class="nhsuk-do-dont-list__label">Speak to a GP if:</h3>
<p>You have any of the following symptoms:</p>

<ul class="nhsuk-list nhsuk-list--bullet" role="list">
<li>a <a href="https://www.nhs.uk/symptoms/cough/">cough</a> that does not go away after 3 weeks</li>
<li>a long-standing cough that gets worse</li>
<li><a href="https://www.nhs.uk/conditions/chest-infection/">chest infections</a> that keep coming back</li>
<li><a href="https://www.nhs.uk/symptoms/coughing-up-blood/">coughing up blood</a></li>
<li>an ache or pain when breathing or coughing</li>
<li>persistent <a href="https://www.nhs.uk/symptoms/shortness-of-breath/">breathlessness</a></li>
<li>persistent tiredness or lack of energy</li>
<li>loss of appetite or unexplained weight loss</li>
</ul>

<p>They could be <a href="https://www.nhs.uk/conditions/lung-cancer/symptoms/">symptoms of lung cancer</a>. Your GP will ask about your general health and your symptoms.</p>

<p>The NHS lung health check is for people who have smoked or are current smokers.</p>
<p>You may be asked to have a <a href="https://www.nhs.uk/tests-and-treatments/blood-tests/">blood test</a> to rule out some of the possible causes of your symptoms, such as a <a href="https://www.nhs.uk/conditions/chest-infection/">chest infection</a>.</p>
</div>
</div>
</div>
{% endblock %}
2 changes: 1 addition & 1 deletion tests/features/not_a_smoker_exit.feature
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Feature: Non smokers
When I go to "/have-you-ever-smoked"
And I fill in and submit my smoking status with "No, I have never smoked"
Then I am on "/non-smoker-exit"
And I see a title "You do not need an NHS lung health check"
And I see a title "You are not eligible for lung cancer screening"