diff --git a/first.py b/first.py index 2623bdc..8a1dcf2 100644 --- a/first.py +++ b/first.py @@ -115,7 +115,7 @@ def get_compose_inputs(path): def home(): """Home page.""" apps = [app_name for app_name in get_apps_json()] - return render_template("index.html", apps=apps) + return render_template("first/index.html", apps=apps) @app.route("/apps") @@ -139,7 +139,7 @@ def install_app(app_name): form = InstallAppInputForm() - return render_template("install.html", app_name=app_name, form=form) + return render_template("first/install.html", app_name=app_name, form=form) @app.route("/deploy/") diff --git a/templates/index.html b/templates/first/index.html similarity index 100% rename from templates/index.html rename to templates/first/index.html diff --git a/templates/install.html b/templates/first/install.html similarity index 100% rename from templates/install.html rename to templates/first/install.html