{% extends popup_view|yesno:"base/popup.html,base.html" %} {% load custom_tags_and_filters %} {% load tz %} {% if not popup_view %} {% block extrahead %} {% endblock %} {% endif %} {% block title %}{{ reservation.reservation_item }} reservation details{% endblock %} {% block content %} {% if not popup_view %}
|
|||||
Title: | {{ reservation.title }} | ||||
User: | {{ reservation.user }} | ||||
Created by: | {{ reservation.creator }} | ||||
Created on: | {{ reservation.creation_time }} | ||||
Tool: | {{ reservation.tool }} | ||||
Area: | {{ reservation.area }} | ||||
Project: | {{ reservation.project }} {% if reservation_project_can_be_changed %}{% endif %} | ||||
{{ reservation.start }} | {% else %}Start: | {{ reservation.start }} | {% endif %}|||
{{ reservation.end }} | {% else %}End: | {{ reservation.end }} | {% endif %}|||
Identifier: | {{ reservation.id }} | ||||
Reservation questions: |
|
||||
Self-configuration: | {{ reservation.user }} has opted to perform the tool configuration | ||||
Configuration: |
{% for config_option in reservation.configurationoption_set.all %}
{{ config_option.name }}: {% if config_option.get_color %}{{ config_option.current_setting }}{% else %}{{ config_option.current_setting }}{% endif %} {% endfor %} |
||||
Additional information: | {{ reservation.additional_information|linebreaksbr }} |