From b5f0fc3012949a9f2d3708374414c2159b21ba13 Mon Sep 17 00:00:00 2001 From: Pete Herlihy Date: Wed, 9 Dec 2015 10:49:05 +0000 Subject: [PATCH] Added route to the manage templates page [ci skip] --- app/main/views/index.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/main/views/index.py b/app/main/views/index.py index 6f46ae671..ca0d584ee 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -124,3 +124,8 @@ def apikeys(): @main.route("/verification-not-received") def verificationnotreceived(): return render_template('verification-not-received.html') + + +@main.route("/manage-templates") +def managetemplates(): + return render_template('manage-templates.html')