{% for question_name, data in reservation.question_data_json.items %}
{{ question_name }}: {{ data.user_input }}
{% endfor %}
{# Vertical spacer #}
{% if reservation.project %}
For project {{ reservation.project }}
{% endif %}
Created by {{ reservation.creator }} {% if reservation.user != reservation.creator %} on behalf of {{ reservation.user }}{% endif %} on {{ reservation.creation_time }}
{% if reservation.tool_accessories.exists %}
Selected accessories:
{{ reservation.tool_accessories.all|join:", " }}
{% endif %}
{% if reservation.self_configuration %}
You have elected to configure this tool yourself.
{% else %}
{% if reservation.short_notice %}
This reservation was created on short notice. Tool configuration is not guaranteed upon start time.
{% endif %}
{% endif %}
{% if reservation.additional_information %}
Additional information:
{{ reservation.additional_information|linebreaksbr }}
{% endif %}
{# Allow the user to cancel the reservation if they have that privilege. #}
{% if not reservation.missed and not reservation.cancelled %}
{% if reservation.user.id == user.id and reservation.has_not_ended or user.is_staff %}