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
2 changes: 1 addition & 1 deletion app/views/sessions/02-organise-slots.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ <h2 class="nhsuk-heading-m">
</h2>
</div>

<form action="" method="post">
<form action="03-prototype-end" method="post">

<input type="hidden" name="slotsAvailableCount">
<input type="hidden" name="slotsSpecialAvailableCount">
Expand Down
33 changes: 33 additions & 0 deletions app/views/sessions/03-prototype-end.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{% extends 'layout.html' %}

{% set pageName = "Prototype end" %}

{% from "_includes/primary-navigation.html" import primaryNavigation %}
{% block header %}
{{ primaryNavigation("Clinics", serviceName) }}
{% endblock %}

{% block beforeContent %}{% endblock %}

{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">

{% set panelHtml %}
<ul>
<li>
<a href="01-set-timings">Back to workdlow item 1: set timings</a>
</li>
<li>
<a href="/prototype-admin/reset">Back to prototype index</a>
</li>
</ul>
{% endset %}

{{ panel({
titleText: "Prototype completed!",
html: panelHtml
}) }}
</div>
</div>
{% endblock %}