Refund Money

{% csrf_token %}

Refund Requests

{% if refund_obj %} {% for refund in refund_obj %} {% endfor %}
Appointment ID User Fortuneteller Date Requested Date Processed Original Amount: Refund Status Cancelled By Actions
{{ refund.appointment.appointment_id}} {{ refund.appointment.seer_user.first_name }} {{ refund.appointment.seer_user.last_name }} {{ refund.appointment.fortune_teller.first_name}} {{ refund.appointment.fortune_teller.last_name}} {{ refund.created_at|date:"d M Y" }} {% if refund.date_processed %}{{ refund.date_processed|date:"d M Y" }} {%else%} N/A {%endif%} ${{ refund.appointment.price }} {{refund.status}} {{refund.appointment.cancelled_by}}
{% else %}

No data found

{% endif %}