From 9d8aa16f04e0fbafbe8544a79e93165173bb4055 Mon Sep 17 00:00:00 2001 From: James Person Date: Wed, 31 Jan 2024 13:44:18 -0500 Subject: [PATCH] "!=" is not the same thing as "is not" (#3326) --- backend/templates/includes/header.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/templates/includes/header.html b/backend/templates/includes/header.html index ab438827fb..07ba226436 100644 --- a/backend/templates/includes/header.html +++ b/backend/templates/includes/header.html @@ -1,7 +1,7 @@ {% load static %} Skip to main content -{% if ENVIRONMENT is not "PRODUCTION" %} +{% if ENVIRONMENT != "PRODUCTION" %}
TEST SITE: This is a test site. Do not begin audit submissions. @@ -19,7 +19,7 @@ alt="U.S. flag"/>
-

{% if ENVIRONMENT is not "PRODUCTION" %}A DEMO{% else %}An official{% endif %} website of the United States government

+

{% if ENVIRONMENT != "PRODUCTION" %}A DEMO{% else %}An official{% endif %} website of the United States government