| S.NO | 
                User | 
                Date | 
                Services Used | 
                Service Id | 
                Total Amount | 
                Discount | 
                Amount Charged | 
                Gateway Fee | 
                Currency | 
                Payment Status | 
                Payment Gateway | 
                Action | 
            
        
        
            {% for i in centralPaymentData %}
            
                | {{ forloop.counter }} | 
                {{ i.user_id }} | 
                {{ i.date }} | 
                {{ i.services_used }} | 
                {{ i.services_id }} | 
                {{ i.total_amount }} | 
                {{ i.discount }} | 
                {{ i.amount_charged }} | 
                {{ i.gateway_fee }} | 
                {{ i.currency }} | 
                {{ i.payment_status }} | 
                {{ i.payment_gateway }} | 
                {% if i.payment_status == 'success' or i.payment_status == 'refunded-rejected' %}
                 | 
                {% elif i.payment_status == 'refunded' %}
                Refunded | 
                {% else %}
                N/A | 
                {% endif %}
            
            {% endfor %}