{% extends "base.html" %} {% load humanize %} {% block title %} {{ request.site.name }} - Operator's Dash {% endblock title %} {% block content %}

{{ request.site.name }} - Operator's Dashboard



PPMS

{% csrf_token %}
{% csrf_token %}

Back To The Future

{% csrf_token %}


Delivery Group Access

{% for booking_group in booking_groups %}
{{ booking_group.dg_name }}
{% for user in booking_group.access_users.all %} {% endfor %}
User Email Username
{{ user.fullname }} {{ user.email }} {{ user.username }}
{% endfor %}


Reservations

Currently active reservations. {% for res in reservations_current %} {% endfor %}
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 }}
Upcoming reservations. {% for res in reservations_future %} {% endfor %}
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 }}
{% endblock content %}