diff --git a/app/main/views/feedback.py b/app/main/views/feedback.py index 73eae1df0..e481676ad 100644 --- a/app/main/views/feedback.py +++ b/app/main/views/feedback.py @@ -4,7 +4,12 @@ from app.main import main from app.main.forms import Feedback -@main.route('/feedback', methods=['GET', 'POST']) +@main.route('/support', methods=['GET', 'POST']) +def support(): + return render_template('views/support/index.html') + + +@main.route('/support/feedback', methods=['GET', 'POST']) def feedback(): form = Feedback() if form.validate_on_submit(): @@ -38,6 +43,6 @@ def feedback(): ) abort(500, "Feedback submission failed") flash("Thanks, we’ve received your feedback", 'default_with_tick') - return redirect(url_for('.feedback')) + return redirect(url_for('.support')) - return render_template('views/feedback.html', form=form) + return render_template('views/support/feedback.html', form=form) diff --git a/app/templates/admin_template.html b/app/templates/admin_template.html index f85071468..60ff553fa 100644 --- a/app/templates/admin_template.html +++ b/app/templates/admin_template.html @@ -40,7 +40,7 @@ Menu
Problems or comments? - Give feedback. + Give feedback.
{% endif %} diff --git a/app/templates/views/signedout.html b/app/templates/views/signedout.html index 5e804894c..c7ebb9934 100644 --- a/app/templates/views/signedout.html +++ b/app/templates/views/signedout.html @@ -168,7 +168,7 @@ and is supported 24 hours a day, 7 days a week.- Contact the team if you have a question or want + Contact the team if you have a question or want to give feedback.
diff --git a/app/templates/views/feedback.html b/app/templates/views/support/feedback.html similarity index 100% rename from app/templates/views/feedback.html rename to app/templates/views/support/feedback.html diff --git a/app/templates/views/support/index.html b/app/templates/views/support/index.html new file mode 100644 index 000000000..cfcf3958f --- /dev/null +++ b/app/templates/views/support/index.html @@ -0,0 +1,86 @@ +{% extends "withoutnav_template.html" %} +{% from "components/textbox.html" import textbox %} +{% from "components/page-footer.html" import page_footer %} + +{% block page_title %} + Feedback – GOV.UK Notify +{% endblock %} + +{% block maincolumn_content %} + ++ I have a problem or question +
+ ++ If you have a problem, first check for known issues on the + GOV.UK Notify system status page. + Subscribe to get alerts on the progress of any listed issue. + +
+ ++ Our office hours are 9.30am to 5.30pm, Monday to Friday. +
++ We’ll reply within 30 minutes whether you’re + reporting a problem or just asking a question. +
++ The team are also available to answer questions on the + cross-government Slack channel. +
+ ++ We offer 24 hour online support if you have a GOV.UK Notify + account and we’ve made your service live. We have different + response times depending on whether the problem you want to + report is an emergency. +
++ It’s only an emergency if: +
++ We’ll reply within 30 minutes and give you hourly updates + until the problem’s fixed. +
++ We’ll reply by the next working day for any other problems. +
+