fixing weekly menu tab

This commit is contained in:
2025-09-29 07:32:49 -07:00
parent b86622f453
commit 0f801937b1
2 changed files with 35 additions and 2 deletions

20
templates/templates.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Templates</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-4">
<h1>Templates</h1>
<p>This is the templates page.</p>
<ul>
{% for template in templates %}
<li>{{ template.name }}</li>
{% endfor %}
</ul>
</div>
</body>
</html>