diff --git a/app/main/views/index.py b/app/main/views/index.py index 2cc6537c1..fe147fb72 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -343,6 +343,13 @@ def send_files_by_email(): ) +@main.route("/studio") +def studio(): + return render_template( + "views/studio.html", + ) + + # --- Redirects --- # diff --git a/app/main/views/send.py b/app/main/views/send.py index 2b7a66f96..2b36e5723 100644 --- a/app/main/views/send.py +++ b/app/main/views/send.py @@ -483,7 +483,7 @@ def send_one_off_step(service_id, template_id, step_index): link_to_upload=( request.endpoint == "main.send_one_off_step" and step_index == 0 ), - errors=form.errors if form.errors else None + errors=form.errors if form.errors else None, ) diff --git a/app/templates/components/footer.html b/app/templates/components/footer.html index ebc8ebbcc..d7aa2bf1a 100644 --- a/app/templates/components/footer.html +++ b/app/templates/components/footer.html @@ -32,6 +32,9 @@ +