From 889677ccb9976c247862eb23f51f565cec5257e2 Mon Sep 17 00:00:00 2001 From: Dobin Rutishauser Date: Thu, 19 Jun 2025 18:34:09 +0200 Subject: [PATCH] fix: view --- app/templates/project.html | 8 +++++--- app/templates/project_add_get.html | 2 +- app/views_project.py | 6 +++--- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/app/templates/project.html b/app/templates/project.html index a48b93e..50d627c 100644 --- a/app/templates/project.html +++ b/app/templates/project.html @@ -12,16 +12,18 @@
- +
+
- +
+
{% if is_built %}
- +
{% if has_remote %} diff --git a/app/templates/project_add_get.html b/app/templates/project_add_get.html index 057e4e4..c810b95 100644 --- a/app/templates/project_add_get.html +++ b/app/templates/project_add_get.html @@ -16,7 +16,7 @@
- + ") @@ -51,7 +51,7 @@ def project(name): project_setting.print() is_built = False - if os.path.exists(project_setting.project_exe_path): + if os.path.exists(project_setting.get_inject_exe_out()): is_built = True exports = []