Skip to content
Merged
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
39 changes: 23 additions & 16 deletions lung_cancer_screening/questions/jinja2/_speak_to_a_gp_if.jinja
Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
<div class="nhsuk-do-dont-list">
<h2 class="nhsuk-do-dont-list__label">Speak to a GP if:</h2>
<p>You have any of the following symptoms:</p>
{% from "nhsuk/components/card/macro.jinja" import card %}

<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>
{% set cardDescriptionHtml %}
<p>You have any of the following symptoms:</p>

<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>
<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>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>
<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>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>
{% endset %}

{{ card({
"type": "non-urgent",
"heading": "Speak to a GP if:",
"descriptionHtml": cardDescriptionHtml
}) }}