Fortune Teller

Appointment

Upcoming Appointment

{% if upcoming_booking %} {% for book in upcoming_booking%} {% endfor %}
User Name Date & Time Services Payment Status
{{book.seer_user.first_name}} {{book.seer_user.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 %}
User Name Date & Time Services Payment Status
{{book.seer_user.first_name}} {{book.seer_user.last_name}}
{{book.appointement_date}}
( {{book.appointment_time}} )
{{book.service.service_name}} ${{book.price}} {{book.appointment_status}}
{% else %}

No Data Found

{% endif %}