{% extends "templates/web.html" %} {% block title %}{{ _("Book Appointment") }}{% endblock %} {% block page_content %}
{% if is_holiday %}

This day is a holiday

{% else %}

Pick A Time Slot

Selected date is {{ date }}

{% for timeslot in timeslots %}
{{ timeslot.time.time().strftime('%H : %M') }}
{% endfor %}
{% endif %}
{% endblock %}