-
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.
FS-4954 - Confirmation page for completed applications
- Loading branch information
Showing
3 changed files
with
101 additions
and
3 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
32 changes: 32 additions & 0 deletions
32
app/blueprints/application/templates/application_complete.html
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,32 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<div class="govuk-panel govuk-panel--confirmation"> | ||
<h1 class="govuk-panel__title"> | ||
Application marked as complete | ||
</h1> | ||
</div> | ||
|
||
<p class="govuk-body">The status of this application has been changed to 'complete'.</p> | ||
|
||
<h3 class="govuk-heading-m">What happens next</h3> | ||
|
||
<ul class="govuk-list govuk-list--bullet"> | ||
<li><a href="{{ url_for('application_bp.create_export_files', round_id=round.round_id) }}" class="govuk-link">Download the application ZIP file</a> and send it to the Live Services team</li> | ||
<li>The application can be edited at any time. Editing a complete application will automatically change its status to 'In progress'.</li> | ||
</ul> | ||
|
||
<p class="govuk-body"> | ||
<a href="{{ url_for('application_bp.build_application', round_id=round.round_id) }}" class="govuk-link">Back to application</a> | ||
</p> | ||
|
||
<div class="govuk-button-group"> | ||
<a href="{{ url_for('index_bp.dashboard') }}" class="govuk-button govuk-button--secondary"> | ||
Back to home | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
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