| ID | 이름 | 전화번호 | 포인트 | 가입일 |
|---|---|---|---|---|
| {{ user.id }} | {{ user.nickname }} | {{ user.phone[:3] }}-{{ user.phone[3:7] }}-{{ user.phone[7:] if user.phone|length > 7 else '' }} | {{ "{:,}".format(user.mileage_balance) }}P | {{ user.created_at[:16].replace('T', ' ') }} |
가입한 사용자가 없습니다.
{% endif %}| 이름 | 전화번호 | 포인트 | 잔액 | 내역 | 일시 |
|---|---|---|---|---|---|
| {{ tx.nickname }} | {{ tx.phone[:3] }}-{{ tx.phone[3:7] }}-{{ tx.phone[7:] if tx.phone|length > 7 else '' }} | {{ "{:,}".format(tx.points) }}P | {{ "{:,}".format(tx.balance_after) }}P | {{ tx.description or tx.reason }} | {{ tx.created_at[:16].replace('T', ' ') }} |
적립 내역이 없습니다.
{% endif %}| 거래번호 | 판매금액 | 적립포인트 | 상태 | 발행일 | 적립일 |
|---|---|---|---|---|---|
| {{ token.transaction_id }} | {{ "{:,}".format(token.total_amount) }}원 | {{ "{:,}".format(token.claimable_points) }}P | {% if token.claimed_at %} 적립완료 {% else %} 대기중 {% endif %} | {{ token.created_at[:16].replace('T', ' ') }} | {{ token.claimed_at[:16].replace('T', ' ') if token.claimed_at else '-' }} |
발행된 QR이 없습니다.
{% endif %}