Files
frietlijst/src/templates/frietlijst.html
ivo cf0c98dcda
All checks were successful
Build and Publish / build (push) Successful in 38s
Friet -> Zwijs
In opdracht van Kristian
2025-12-24 16:36:12 +00:00

46 lines
1.2 KiB
HTML

<!doctype html>
<html lang="nl">
<head>
<title>Zwijslijst by Ivo</title>
<link rel="stylesheet" href="https://unpkg.com/github-markdown-css@4.0.0/github-markdown.css"/>
</head>
<body>
<div class="markdown-body">
<h1>Zwijslijst by Ivo</h1>
<h2>Reeds besteld</h2>
<ol>
{% for applicant in applicants %}
<li>{{ applicant }}</li>
{% endfor %}
</ol>
<h2>Streeplijst - {{ item_count }} stuks</h2>
<ul>
{% for item in items %}
<li>{{ item.name }}: {{ item.amount }}</li>
{% endfor %}
</ul>
<h2>Totaaloverzicht</h2>
<ul>
{% for order in orders %}
<li>
{{ order.name }}
<ul>
{% for item in order.items %}
<li>{{ item }}</li>
{% endfor%}
</ul>
</li>
{% endfor %}
</ul>
<p> Heb je feedback?
<a href="https://docs.google.com/forms/d/e/1FAIpQLSddGpp9kbvW9QfLVATOM3pJqhq1ci0_gdZdpGmXmkPRMoiLEw/viewform?usp=sf_link"
target="_blank">Klik hier!</a></p>
<p>Wil je de code van deze pagina zien of hieraan bijdragen?
<a href="https://git.spijkerman.com/ivo/frietlijst"
target="_blank">Klik hier!</a>
</p>
</div>
</body>
</html>