{% extends 'base.html' %} {% block content %}

Create Availability Slot

Current Slots

{% for slot in slots %}
{{ user_lookup.get(slot.doctor_id, 'Doctor') }}
{{ day_names[slot.day_of_week] }} · {{ slot.start_time }} - {{ slot.end_time }} · {{ slot.duration_minutes }} min
{{ 'Active' if slot.is_active else 'Inactive' }}
{% endfor %}
{% endblock %}