Use html template to generate testapp views

This commit is contained in:
2024-05-19 16:12:02 -04:00
parent 165b34d74a
commit d372de4d91
2 changed files with 22 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Testapp</title>
</head>
<body>
<h1>Testapp</h1>
<p>This is the testapp.</p>
{% if click_count %}
<p>This page was requested {{ click_count }} times.</p>
{% else %}
<p>Error: Could not get request count from database.</p>
{% endif %}
</body>
</html>