I've finished using this kiosk
{% if usage_events %}

Current NanoFab usage

{% for u in usage_events %}
{{ u.tool }}
You are using this tool for the project named {{ u.project }} since {{ u.start|date:"l @ g:i A" }}
{% endfor %}
{% endif %}

Find a tool by category

{% for category in categories %}
{{ category }}
{% endfor %}
{% if upcoming_reservations %}

Upcoming Reservations

{% for reservation in upcoming_reservations %}
{% include 'kiosk/individual_reservation.html' with reservation=reservation customer=customer %}
{% endfor %}
{% endif %}