Skip to content

Commit

Permalink
Update questions page.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmenezes0 committed Mar 15, 2024
1 parent d8f8d67 commit 9f2f9e7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion consultation_analyser/consultations/jinja2/show_question.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{% extends "base.html" %}

{% block content %}
<h1 class="govuk-heading-xl">Question</h1>

<h1 class="govuk-heading-xl">Question summary - dummy page</h1>
<p class="govuk-body">{{ question.text }}</p>
<h2 class="govuk-heading-l">Prevalent themes</h2>
<ul class="govuk-list govuk-list--bullet">
{% for theme in themes %}
<li>{{ theme.summary }}</li>
{% endfor %}
</ul>

{% endblock %}

0 comments on commit 9f2f9e7

Please sign in to comment.