{% extends "booking_ui/base.html" %} {% block title %}Schedule | {{ service.name }} | {{ branding.site_name }}{% endblock %} {% block content %}
{{ service.name }}

Pick a time

{% if providers and not provider %}

Select a provider to see availability.

{% for p in providers %}

{{ p.name }}

{{ p.description }}

View times
{% endfor %}
{% endif %} {% if provider %}

Showing times for {{ provider.name }} between {{ start_date }} and {{ end_date }}.

{% endif %} {% if grouped_slots %} {% for date, slots in grouped_slots.items %}

{{ date }}

{% for slot in slots %}
{% if provider %}{% endif %}
{{ slot.start|time:"H:i" }}
{% if slot.end %}{{ slot.end|time:"H:i" }}{% endif %}
{% endfor %}
{% endfor %} {% else %}

No available slots in the next {{ date_range_days }} days.

{% endif %} {% endblock %}