{% extends "base.html" %} {% block title %}رسیدها{% endblock %} {% block content %}
در انتظار تایید شده رد شده همه
{% for r in receipts %} {% endfor %} {% if not receipts %} {% endif %}
شناسه کاربر مبلغ تاریخ وضعیت عملیات
#{{ 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 %}
رسیدی یافت نشد
{% endblock %}