💳 PAYMENTS
{% if student %}
{{ student.name }}
{% endif %}
{% if student %}
{{ school.name }}
TRANSACTION HISTORY
{% endif %}
{% if error %}
⚠️
Access Error
{{ error }}
{% else %}
← Back to Attendance History
{% if student.photo %}
{% else %} {{ student.name|first|upper }} {% endif %}
{{ student.name }}
{% if student.student_class %}
{{ student.student_class.name }}
{% endif %}
PIN: {{ student.pin }}
{% if student.roll %}
Roll: {{ student.roll }}
{% endif %}
{{ total_transactions }}
Transactions
৳{{ total_paid }}
Total Paid
All Transactions
{% if transactions %}
{% for txn in transactions %}
RECPT-{{ txn.id }}
{% if txn.payment_method == 'CASH' %}💵{% elif txn.payment_method == 'BKASH' %}📱{% elif txn.payment_method == 'NOGOD' %}📲{% elif txn.payment_method == 'ROCKET' %}🚀{% elif txn.payment_method == 'BANK' %}🏦{% else %}💳{% endif %} {{ txn.get_payment_method_display }}
৳{{ txn.total_amount }}
{{ txn.timestamp|date:"d M Y, g:i A" }}
{% if txn.reference_number %}
Ref: {{ txn.reference_number }}
{% endif %}
{% if txn.items.all %}
{% for item in txn.items.all %}
{{ item.fee.fee_type.name }}
৳{{ item.amount_paid }}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
📭
No payment transactions found.
{% endif %} {% endif %}