diff --git a/routes/unsecure_routes.py b/routes/unsecure_routes.py index 0fc958d..90878bb 100644 --- a/routes/unsecure_routes.py +++ b/routes/unsecure_routes.py @@ -6,7 +6,7 @@ unsecure = Blueprint('unsecure', __name__, url_prefix='/unsecure') @unsecure.route('/') def index(): - return render_template('index.html') + return render_template('index.html', title='gimmiCoffee') @unsecure.route('/send') def send_command(): @@ -22,4 +22,4 @@ def send_command(): @unsecure.route('/live') def test(): - return render_template('live.html') + return render_template('live.html', users=[{'name': 'Max'}, {'name': 'Moritz'}, {'name': 'Hans'}]) diff --git a/templates/index.html b/templates/index.html index 99cd22d..7c09f5a 100644 --- a/templates/index.html +++ b/templates/index.html @@ -4,7 +4,7 @@
-Test:
Status:
Counter:
- +