{% extends "base.html" %} {% block title %}رسیدها{% endblock %} {% block content %}
| شناسه | کاربر | مبلغ | تاریخ | وضعیت | عملیات |
|---|---|---|---|---|---|
| #{{ r.id }} | {{ '@' + r.username if r.username else r.user_id }} | {{ "{:,.0f}".format(r.amount) }} {{ symbol }} | {{ r.created_at[:16] if r.created_at else '-' }} | {% if r.status == 'pending' %} در انتظار {% elif r.status == 'approved' %} تایید شده {% else %} رد شده {% endif %} | {% if r.status == 'pending' %} {% else %} - {% endif %} |
| رسیدی یافت نشد | |||||