{% extends 'admin-dashboard.html' %} {% load static %} {% load humanize %} {% block content %}

Transaction Details

Filter Transactions
Search Criteria & Status
Date & Sorting
Clear Filters
{% for t in transaction %} {% empty %} {% endfor %}
# 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 %}
{% endblock %}