From 4367d8d1df461806946e756370c9cb73e94f1a1a Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 3 Feb 2016 21:00:25 +0100 Subject: It is now possible to give the address of a CDN server through the configuratin file (or a system variable). --- src/web/templates/home.html | 2 +- src/web/views/views.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/web') diff --git a/src/web/templates/home.html b/src/web/templates/home.html index c2966be7..fcb2a042 100644 --- a/src/web/templates/home.html +++ b/src/web/templates/home.html @@ -18,5 +18,5 @@
- + diff --git a/src/web/views/views.py b/src/web/views/views.py index 223f96e9..88f3f8ce 100644 --- a/src/web/views/views.py +++ b/src/web/views/views.py @@ -237,7 +237,7 @@ from flask import jsonify @login_required @etag_match def home(): - return render_template('home.html') + return render_template('home.html', cdn=conf.CDN_ADDRESS) @app.route('/menu') -- cgit