Moved the templates into the app directory.

Added Manager to the app.py
This commit is contained in:
Rebecca Law
2015-11-23 16:07:19 +00:00
parent ba14e1263b
commit 11d79951f3
89 changed files with 10356 additions and 24 deletions

View File

@@ -1,6 +1,23 @@
from flask import render_template
from app.main import main
@main.route('/index')
def index():
return 'Hello from notifications-admin'
@main.route("/")
def idx():
return render_template('index.html')
@main.route("/govuk")
def govuk():
return render_template('govuk_template.html')
@main.route("/helloworld")
def helloworld():
return render_template('hello-world.html')