# HG changeset patch # User Dennis Fink # Date 2022-06-10 09:19:40 # Node ID 3f3d86413794dcbf4185ded3bf70d0268750bedc # Parent b1146979862fcad7c9601f4a9499d3b2b5dc66a4 Pass ActiveStatusv14 to index.html diff --git a/spaceapi/views.py b/spaceapi/views.py --- a/spaceapi/views.py +++ b/spaceapi/views.py @@ -19,7 +19,7 @@ root_views = Blueprint("root", __name__) def index(): if request_wants_json(): return jsonify(ActiveStatusv14()) - return render_template("index.html", status=ActiveStatus()) + return render_template("index.html", status=ActiveStatusv14()) @root_views.route("/status.json")