{% load custom_tags_and_filters %}
I've finished using this kiosk
{% if customer.access_expiration %} {% if show_access_expiration_banner %}
Your access expires in {{ customer.access_expiration|timeuntil }} on {{ customer.access_expiration|date:'SHORT_DATE_FORMAT' }}
{% endif %} {% endif %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if usage_events %}

Current {{ facility_name }} use

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

Find a tool

{% include 'kiosk/tool_categories.html' %} {% if upcoming_reservations %}

Upcoming Reservations

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