{% extends 'admin_base_layout.html' %}
{% load static %}
{% block content %}
Seer | Booking Details
Fortune Teller
{{booking_obj.fortune_teller.first_name}} {{booking_obj.fortune_teller.last_name}}
User
{{ booking_obj.seer_user.first_name }} {{ booking_obj.seer_user.last_name }}
- Appointment ID: #{{ booking_obj.appointment_id}}
- Appointment Date: {{ booking_obj.appointment_date}}
- Appointment Time: {{ booking_obj.appointment_time}}
- Service Name: {{ booking_obj.service.service_name }}
- Service Type: {{ booking_obj.service_type}}
- Appointment Status: {{ booking_obj.appointment_status}}
- Appointment Completed: {% if booking_obj.appointment_completed == False %} No {% else %} Yes {% endif %}
- Price: ${{ booking_obj.price }}
{%endblock%}
{%block js%}
{% endblock %}