From 8d81c4d9846a3ebcf82ea4758f73223203bdd0fc Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 25 Feb 2016 17:34:49 +0000 Subject: [PATCH] Stub out the send letters page --- app/main/views/send.py | 7 +++++++ app/templates/main_nav.html | 1 + app/templates/views/letters.html | 17 +++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 app/templates/views/letters.html diff --git a/app/main/views/send.py b/app/main/views/send.py index e9dfeea44..e8631ce84 100644 --- a/app/main/views/send.py +++ b/app/main/views/send.py @@ -29,6 +29,13 @@ from app import job_api_client from app.utils import validate_recipient, InvalidPhoneError, InvalidEmailError +@main.route("/services//send/letters", methods=['GET']) +def letters_stub(service_id): + return render_template( + 'views/letters.html', service_id=service_id + ) + + @main.route("/services//send/", methods=['GET']) def choose_template(service_id, template_type): diff --git a/app/templates/main_nav.html b/app/templates/main_nav.html index a08a24a4a..f6eef7ae6 100644 --- a/app/templates/main_nav.html +++ b/app/templates/main_nav.html @@ -5,6 +5,7 @@
  • Manage team
  • diff --git a/app/templates/views/letters.html b/app/templates/views/letters.html new file mode 100644 index 000000000..1086f1d50 --- /dev/null +++ b/app/templates/views/letters.html @@ -0,0 +1,17 @@ +{% extends "withnav_template.html" %} + +{% block page_title %} + Send letters – GOV.UK Notify +{% endblock %} + +{% block maincolumn_content %} + +

    + Send letters +

    + +

    + This page is where you would go to send letters. +

    + +{% endblock %}