From 5f2bc11155fdcde45dbf8085d21b309111986b58 Mon Sep 17 00:00:00 2001 From: Lucas Schumacher Date: Sun, 19 May 2024 22:04:13 -0400 Subject: [PATCH] Add childish easter egg --- testapp/templates/testapp/index.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/testapp/templates/testapp/index.html b/testapp/templates/testapp/index.html index ff190e5..42d01a0 100644 --- a/testapp/templates/testapp/index.html +++ b/testapp/templates/testapp/index.html @@ -17,7 +17,13 @@

This is the testapp!

{% if click_count %} -

This page was requested {{ click_count }} times.

+

This page was requested {{ click_count }} times.
+ {% if click_count == 69 %} + Nice. + {% else %} +
+ {% endif %} +

{% else %}

Internal error: Could not get request count from database.

{% endif %}