{% extends 'admin-dashboard.html' %} {% load static %} {% load humanize %} {% block content %}
| # | Buyer | Project | Tracking ID | Time | Qty | Amount | Status | Action |
|---|---|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ t.sender.full_name|truncatechars:20 }} | {{ t.project.title|truncatechars:30 }} | {{ t.tracking_id }} | {{ t.transaction_time|date:"d M, Y H:i" }} | {{ t.num_tiles }} Tiles | ₹{{ t.amount|floatformat:2|intcomma }} | {% if t.status == 'Verified' %} Verified {% elif t.status == 'Unverified' %} Unverified {% elif t.status == 'Rejected' %} Rejected {% endif %} | {% if t.status == 'Verified' and not admin.is_superuser %} {% endif %} |
|
No transactions found matching the criteria.
|
||||||||