diff --git a/app/main/views/send.py b/app/main/views/send.py index 07f50b5e2..82a9aa310 100644 --- a/app/main/views/send.py +++ b/app/main/views/send.py @@ -34,6 +34,13 @@ page_headings = { } +@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 %}