{% extends 'admin_base_layout.html' %} {% load static %} {% block content %} Manimaran | Refund Listing

Refund Money

All Refund Request

{% if refund_obj %} {% for refund in refund_obj%} {% endfor %}

Booking Id

Users Name

Service Provider

Date

Pay amount

Refund Amount

Status

Action

{{ refund.booking.booking_id }}
{{refund.booking.user.first_name}} {{refund.booking.user.last_name}}
{{refund.booking.worker.first_name}} {{refund.booking.worker.last_name}} {{ refund.date_processed|date:"d M Y" }} £{{ refund.refund_amount }} £{{ refund.refund_amount }}
{{ refund.status }}
{% else %}

No data found

{% endif %}
{% if refund_obj %}
{% endif %} {% endblock %}