diff --git a/flask_app/__init__.py b/flask_app/__init__.py index 2471a85..3fe6bec 100644 --- a/flask_app/__init__.py +++ b/flask_app/__init__.py @@ -49,4 +49,4 @@ def menorah_settings(): return send_file( file_bytesio, as_attachment=True, download_name="settings.json" ) - return render_template("index.html", input_form=input_form) + return render_template("menorah/settings.html", input_form=input_form) diff --git a/flask_app/templates/index.html b/flask_app/templates/menorah/settings.html similarity index 100% rename from flask_app/templates/index.html rename to flask_app/templates/menorah/settings.html