diff --git a/gruppenbildungsspiel.py b/gruppenbildungsspiel.py index b979774..bf2a1d6 100644 --- a/gruppenbildungsspiel.py +++ b/gruppenbildungsspiel.py @@ -16,3 +16,7 @@ def result(): @app.route('/admin') def admin(): return render_template('admin.html', title='Test', text='Hallo, Admin Fooboar') + +@app.route('/answers') +def answers(): + return render_template('answers.html', title='Test', text='Hallo, Admin Fooboar') diff --git a/templates/answers.html b/templates/answers.html new file mode 100644 index 0000000..94d9808 --- /dev/null +++ b/templates/answers.html @@ -0,0 +1 @@ +{% extends "base.html" %} diff --git a/templates/base.html b/templates/base.html index 7b8df7b..532c6e9 100644 --- a/templates/base.html +++ b/templates/base.html @@ -6,6 +6,13 @@ +

{{ text }}