Kits required between {{ start_date }} and {% if end_date %} {{ end_date }} {% else %} end of time {% endif %}
Date
Kits
{% for appointment in appointments %}
{{ appointment.datetime_when | date:"Y-m-d H:i"}}
{% for type in appointment.appointment_types.all %}
{% for item in type.required_equipment.all %}
{% if item.disposable %}
{{ item.name }},
{% endif %}
{% endfor %}
{% endfor %}