Files
notifications-admin/app/main/views/index.py

58 lines
1.2 KiB
Python
Raw Normal View History

from flask import render_template
2015-11-20 16:33:11 +00:00
from app.main import main
2015-11-20 16:22:44 +00:00
@main.route('/')
2015-11-20 16:22:44 +00:00
def index():
return render_template('views/signedout.html')
@main.route("/govuk")
def govuk():
return render_template('views/govuk_template.html')
@main.route("/register-from-invite")
def registerfrominvite():
return render_template('views/register-from-invite.html')
@main.route("/verify-mobile")
def verifymobile():
return render_template('views/verify-mobile.html')
2015-11-30 14:49:11 +00:00
@main.route("/send-email")
def sendemail():
return render_template('views/send-email.html')
2015-11-30 14:49:11 +00:00
@main.route("/check-email")
def checkemail():
return render_template('views/check-email.html')
2015-11-30 15:34:31 +00:00
@main.route("/user-profile")
def userprofile():
return render_template('views/user-profile.html')
@main.route("/manage-users")
def manageusers():
return render_template('views/manage-users.html')
@main.route("/api-keys")
def apikeys():
return render_template('views/api-keys.html')
2016-01-04 14:00:39 +00:00
@main.route("/manage-templates")
def managetemplates():
return render_template('views/manage-templates.html')
@main.route("/edit-template")
def edittemplate():
return render_template('views/edit-template.html')