From b463bc569a71baa21b358b1e98e03aa30dddadeb Mon Sep 17 00:00:00 2001 From: perast Date: Tue, 10 Nov 2020 10:14:43 +0100 Subject: [PATCH] Only show download-link if profile.bin exist --- cdn/static/web/launcher/upload.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cdn/static/web/launcher/upload.html b/cdn/static/web/launcher/upload.html index 186aa2e..a043c4c 100644 --- a/cdn/static/web/launcher/upload.html +++ b/cdn/static/web/launcher/upload.html @@ -18,7 +18,12 @@ profile.bin
- {{ profile }} + {% if profile %} + {{ profile }} + {% endif %} + {% if not profile %} + {{ profile }} + {% endif %}