Fortuneteller Reports

{% csrf_token %}

Fortuneteller Report Lists

{% if user_appointments %} {% for appoint in user_appointments %} {% endfor %}
Fortuneteller Name Email Date Appointments Recived Status Action
{{ appoint.fortune_teller__first_name }} {{ appoint.fortune_teller__last_name }}
{{ appoint.fortune_teller__email }} {{ appoint.fortune_teller__created_at|date:"d M Y" }} {{ appoint.total_appointments }} {% if appoint.fortune_teller__status == 1 %} Active {% else %} Inactive {% endif %}
{% else %}

No Data Found

{% endif %}