Fortune Teller
Appointment
Upcoming Appointment
{% if upcoming_booking %}
{% else %}
| 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 }} |
No Data Found
{% endif %}Past Appointment
{% if past_booking %}
{% else %}
| 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}} |
No Data Found
{% endif %}