{% extends 'base.html' %} {% block title %}Usage and billing information{% endblock %} {% block content %}

Usage and billing information for {{ timeframe }}

This page presents a monthly report of your billable NanoFab usage. It does not include adjustments requested from the NanoFab User Office. All adjustments and finalized costs can be found on your monthly invoice.

{% if no_charges %}

There was no usage for {{ timeframe }}.

{% 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 %}
Loading billing information...
{% endblock %}