{% extends "account/home.html" %} {% load staticfiles %} {% load custom_filter %} {% load widget_tweaks %} {% block title %} Book Slot {% endblock %} {% block content %} {% block headerfiles %} {% endblock %}

Book future slots:

{% csrf_token %} Book for a given date:
{{form.as_p}}
OR
Book for current date and time

{%csrf_token %} {% for h in history %} {%if h.start_time >= now %} {% else %} {% endif %} {% compare_slot_time h.start_time h.end_time now as slot_status %} {%if slot_status == "pending" %} {% elif slot_status == "ongoing" %} {% else %} {% endif %} {% endfor %}
Start Time of a Slot Duration Action
{{h.start_time}} {{h.end_time}}

Pending

Ongoing

Finished

{% endblock %}