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

19 lines
323 B
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('/index')
def index():
return 'Hello from notifications-admin'
@main.route("/govuk")
def govuk():
return render_template('govuk_template.html')
@main.route("/helloworld")
def helloworld():
return render_template('hello-world.html')