From 23bb16d1728049320ba49a4c3efc11dbb2cfa81f Mon Sep 17 00:00:00 2001 From: Dobin Date: Mon, 29 Apr 2024 18:38:33 +0100 Subject: [PATCH] ui: make a bit nicer, highlight missing dlls --- app/templates/project.html | 54 ++++++++++++++++++++------------------ app/views_project.py | 7 +++++ 2 files changed, 35 insertions(+), 26 deletions(-) diff --git a/app/templates/project.html b/app/templates/project.html index d3eb4b0..2c0642b 100644 --- a/app/templates/project.html +++ b/app/templates/project.html @@ -12,7 +12,7 @@
-
+
@@ -23,7 +23,6 @@ {% if is_built %}
-
@@ -31,22 +30,21 @@
-
-
+ + {% if has_remote %}
-
-
+ {% endif %}
{% endif %}
-
+
@@ -85,11 +83,29 @@ {% endfor %} {% endif %} - + EXE INFO
- -
+ +
+ x64: {{ is_64 }} / Dotnet: {{ is_dotnet}}
+ .text: {{ code_sect_size}}
+ .rodata: {{ data_sect_size}} + (max: {{ data_sect_largest_gap_size}})
+ + {% if unresolved_dlls|length > 0 %} +
+ Unresolved dlls: +
    + {% for dll in unresolved_dlls %} +
  • {{ dll }}
  • + {% endfor %} +
+ {% endif %} +
+ + +