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

Adjustment activities are not included in the usage information. {% if customizations|get_item:"adjustment_requests_enabled" == "enabled" and adjustment_time_limit %}
Adjustment requests can be made for charges ending after {{ adjustment_time_limit.date }}. {% endif %}


{% if no_charges %}

There was no usage between {{ start_date|date }} and {{ end_date|date }}.

{% endif %} {% if missed_reservations %}

Missed reservations

{% for m in missed_reservations %}
{{ m.reservation_item }}
{% if explicitly_display_customer %} Missed by {{ m.user }}
{% endif %} {{ m.start }}
Charged to project {{ m.project }} {% if m|can_be_adjusted:user %} {% include "usage/adjustment_request_button.html" with charge=m %} {% endif %}
{% endfor %} {% endif %} {% if consumables %}

Supplies and consumables

{% for c in consumables %}
{{ c.consumable }}
{% if explicitly_display_customer %} For {{ c.customer }}
{% endif %} Quantity {{ c.quantity }}
Purchased from {{ c.merchant }} on {{ c.date }}
Charged to project {{ c.project }} {% if c|can_be_adjusted:user %} {% include "usage/adjustment_request_button.html" with charge=c %} {% endif %}
{% endfor %} {% endif %} {% if staff_charges %}

Staff charges

{% for s in staff_charges %}
Work performed by {{ s.staff_member }} {% if explicitly_display_customer %} on behalf of {{ s.customer }} {% else %} on your behalf {% endif %}
{% if s.note %} Charge note: {{ s.note|linebreaksbr }}
{% endif %} {{ s.start }}
{{ s.end }}
Charged to project {{ s.project }} {% if s|can_be_adjusted:user %} {% include "usage/adjustment_request_button.html" with charge=s %} {% endif %}
{% endfor %} {% endif %} {% if training_sessions %}

Training sessions

{% for t in training_sessions %}
{{ t.tool }} {{ t.get_type_display }} training {% if explicitly_display_customer %}for {{ t.trainee }}{% endif %}
Trained by {{ t.trainer }}
{{ t.date }} ({{ t.duration }} minutes)
Charged to project {{ t.project }}
{% endfor %} {% endif %} {% if area_access %}

Area access

{% for a in area_access %}
{{ a.area }}
{% if a.staff_charge %} Area accessed by {{ a.staff_charge.staff_member }} {% if explicitly_display_customer %} on behalf of {{ a.customer }} {% else %} on your behalf {% endif %}
{% else %} {% if explicitly_display_customer %} Area accessed by {{ a.customer }}
{% endif %} {% endif %} {{ a.start }}
{{ a.end|default_if_none:"In progress" }}
Charged to project {{ a.project }} {% if a|can_be_adjusted:user %} {% include "usage/adjustment_request_button.html" with charge=a %} {% endif %}
{% endfor %} {% endif %} {% if usage_events %}

Tool usage

{% for u in usage_events %}
{{ u.tool }}
{% if u.user != u.operator %} Operated by {{ u.operator }} {% if explicitly_display_customer %} on behalf of {{ u.user }} {% else %} on your behalf {% endif %}
{% else %} {% if explicitly_display_customer %} Operated by {{ u.user }}
{% endif %} {% endif %} {{ u.start }}
{{ u.end }}
Charged to project {{ u.project }} {% if u|can_be_adjusted:user %} {% include "usage/adjustment_request_button.html" with charge=u %} {% endif %} {% if u.pre_run_data_json.items %}
Pre run data
{% for question_name, data in u.pre_run_data_json.items %} {% if not data.readonly %} {% if data.type == 'group' %} {% else %} {% endif %} {% endif %} {% endfor %}
{{ data.title }} {% if data.title|slice:"-1:" != ":" %}:{% endif %} {% res_question_tbody data %}
{{ data.title }} {% if data.title|slice:"-1:" != ":" %}:{% endif %} {{ data.user_input|linebreaksbr }} {% if data.user_input and data.suffix %}{{ data.suffix }}{% endif %}
{% endif %} {% if u.post_run_data_json.items %}
Post run data
{% for question_name, data in u.post_run_data_json.items %} {% if not data.readonly %} {% if data.type == 'group' %} {% else %} {% endif %} {% endif %} {% endfor %}
{{ data.title }} {% if data.title|slice:"-1:" != ":" %}:{% endif %} {% res_question_tbody data %}
{{ data.title }} {% if data.title|slice:"-1:" != ":" %}:{% endif %} {{ data.user_input|linebreaksbr }} {% if data.user_input and data.suffix %}{{ data.suffix }}{% endif %}
{% endif %}
{% endfor %} {% endif %}
{% endblock %}