Files
notifications-admin/app/main/views/index.py
2015-11-24 09:40:14 +00:00

19 lines
323 B
Python

from flask import render_template
from app.main import main
@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')