NOJIRA refactored repo into orderrepo

This commit is contained in:
2021-09-22 15:34:07 +02:00
parent 1f0353c6f5
commit 95e744de30
6 changed files with 67 additions and 94 deletions

View File

@@ -8,20 +8,20 @@
<div class="markdown-body">
<h1>Reeds besteld</h1>
<ol>
{% for applicant in data.applicants %}
{% for applicant in applicants %}
<li>{{ applicant }}</li>
{% endfor %}
</ol>
<h1>Streeplijst - {{ data.item_count }} stuks</h1>
<h1>Streeplijst - {{ item_count }} stuks</h1>
<ul>
{% for item in data.items %}
{% for item in items %}
<li>{{ item.name }}: {{ item.amount }}</li>
{% endfor %}
</ul>
<h1>Totaaloverzicht</h1>
<ul>
{% for order in data.orders %}
{% for order in orders %}
<li>
{{ order.name }}
<ul>