{% extends 'dashboard/dashboard_index.html' %} {% block title %} All Bookings {% endblock %} {% block main %}

All Bookings

{% if slots %} {% for slot in slots %} {% endfor %}
Date Slot Board User
{{slot.start_time|date:"d M Y"}} {{slot.start_time|time:"H:i"}} to {{slot.end_time|time:"H:i"}} {{slot.user.userboard_set.get.board.mid}} {{slot.user}}
{% else %}

No slots have been booked.

{% endif %}
{% endblock %}