Add childish easter egg

This commit is contained in:
Lucas Schumacher 2024-05-19 22:04:13 -04:00
parent 04f647e3f4
commit 5f2bc11155

View File

@ -17,7 +17,13 @@
<h1 class="display-5 fw-bold text-body-emphasis">This is the testapp!</h1> <h1 class="display-5 fw-bold text-body-emphasis">This is the testapp!</h1>
<div class="col-lg-6 mx-auto"> <div class="col-lg-6 mx-auto">
{% if click_count %} {% if click_count %}
<p class="lead mb-4">This page was requested {{ click_count }} times.</p> <p class="lead mb-4">This page was requested {{ click_count }} times.<br/>
{% if click_count == 69 %}
Nice.
{% else %}
<br/>
{% endif %}
</p>
{% else %} {% else %}
<p class="lead mb-4">Internal error: Could not get request count from database.</p> <p class="lead mb-4">Internal error: Could not get request count from database.</p>
{% endif %} {% endif %}