{% extends 'usage/usage_base.html' %} {% block usage_content %}

Adjustment activities are not included in the usage information.

{% if no_charges %}

There was no usage between {{ start_date|date:"F jS, Y" }} and {{ end_date|date:"F jS, Y" }}.

{% endif %} {% if missed_reservations %}

Missed reservations

{% for m in missed_reservations %}
{{ m.tool }}
{{ m.start }}
Charged to project {{ m.project }}
{% endfor %} {% endif %} {% if consumables %}

Supplies and consumables

{% for c in consumables %}
{{ c.consumable }}
Quantity {{ c.quantity }}
Purchased from {{ c.merchant }} on {{ c.date }}
Charged to project {{ c.project }}
{% endfor %} {% endif %} {% if staff_charges %}

Staff charges

{% for s in staff_charges %}
Work performed by {{ s.staff_member }}
{{ s.start }}
{{ s.end }}
Charged to project {{ s.project }}
{% endfor %} {% endif %} {% if training_sessions %}

Training sessions

{% for t in training_sessions %}
{{ t.get_type_display }} training for {{ t.duration }} minutes taught by {{ t.trainer }} for the {{ t.tool }}. Charged to project {{ t.project }} on {{ t.date }}.
{% endfor %} {% endif %} {% if area_access %}

Area access

{% for a in area_access %}
{{ a.area }}
{{ a.start }}
{{ a.end|default_if_none:"In progress" }}
Charged to project {{ a.project }}
{% endfor %} {% endif %} {% if usage_events %}

Tool usage

{% for u in usage_events %}
{{ u.tool }}
{% if u.user != u.operator %}Operated by {{ u.operator }} on your behalf
{% endif %} {{ u.start }}
{{ u.end }}
Charged to project {{ u.project }}
{% endfor %} {% endif %}
{% endblock %}