Fortune Teller

Appointment

Appointment

{% if upcoming_booking %} {% for book in upcoming_booking%} {% endfor %}
Fortuneteller Name Date & Time Services Payment Status
{{book.fortune_teller.first_name}} {{book.fortune_teller.last_name}}
{{ book.appointement_date }}
( {{ book.appointment_time}} )
{{ book.service.service_name}} ${{ book.price }} {{ book.appointment_status }}
{% else %}

No Data Found

{% endif %}

Past Appointment

{% if past_booking %} {% for book in past_booking %} {% endfor %}
Fortuneteller Name Date & Time Services Payment Status
{{book.fortune.first_name}} {{book.fortune.last_name}}
{{book.appointement_date}}
( {{book.appointment_time}} )
{{book.service.service_name}} ${{book.price}} {{book.appointment_status}}
{% else %}

No Data Found

{% endif %}