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 %}

Nearby tools

{% for tool in tools %}
{{ tool }} {% if tool.in_use %} {% endif %} {% if tool.delayed_logoff_in_progress %} {% endif %} {% if tool.scheduled_outage %} {% endif %} {% if tool.required_resource_is_unavailable %} {% elif tool.nonrequired_resource_is_unavailable %} {% endif %} {% if tool.operational == False %} {% elif tool.problematic == True %} {% endif %}
{% endfor %}