From: Michael Tremer
Date: Wed, 13 Dec 2023 16:18:20 +0000 (+0000)
Subject: help: Fix rendering page if users are not logged in
X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=93ab0bcfa34472f10be54e72e69203f1dd9f1002;p=ipfire.org.git
help: Fix rendering page if users are not logged in
Signed-off-by: Michael Tremer
---
diff --git a/src/templates/static/help.html b/src/templates/static/help.html
index aa794720..05c70e64 100644
--- a/src/templates/static/help.html
+++ b/src/templates/static/help.html
@@ -141,7 +141,7 @@
- {% if current_user or not current_user.consents_to_promotional_emails %}
+ {% if not current_user or not current_user.consents_to_promotional_emails %}