{% extends "base.html" %}
{% load humanize %}
{% block title %}
{{ request.site.name }} Reservation Details
{% endblock title %}
{% block content %}
Reservation Details
ID |
User |
Delivery Group |
Start |
End |
Duration |
{{ res_id }} |
{{ res.user.email }} |
{{ res.deliverygroup }} |
{{ res.t_start | naturaltime }} ({{ res.t_start }}) |
{{ res.t_end | naturaltime }} ({{ res.t_end }}) |
{{ res.t_end | timeuntil:res.t_start }} |
Related Bookings
ID |
Start |
End |
Duration |
PPMS System ID |
PPMS Session |
{% for booking in bookings %}
{{ booking.id }} |
{{ booking.t_start }} |
{{ booking.t_end }} |
{{ booking.t_end | timeuntil:booking.t_start }} |
{{ booking.system_id }} |
{{ booking.ppms_session }} |
{% endfor %}
{% endblock content %}