📊 관리자 대시보드
청춘약국 마일리지 관리
총 가입자 수
{{ stats.total_users or 0 }}명
누적 포인트 잔액
{{ "{:,}".format(stats.total_balance or 0) }}P
QR 발행 건수
{{ token_stats.total_tokens or 0 }}건
적립 완료율
{% if token_stats.total_tokens and token_stats.total_tokens > 0 %} {{ "%.1f"|format((token_stats.claimed_count or 0) * 100.0 / token_stats.total_tokens) }}% {% else %} 0% {% endif %}
최근 가입 사용자 (20명)
{% if recent_users %} {% for user in recent_users %} {% endfor %}
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', ' ') }}
{% else %}

가입한 사용자가 없습니다.

{% endif %}
최근 적립 내역 (50건)
{% if recent_transactions %} {% for tx in recent_transactions %} {% endfor %}
이름 전화번호 포인트 잔액 내역 일시
{{ 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', ' ') }}
{% else %}

적립 내역이 없습니다.

{% endif %}
최근 QR 발행 내역 (20건)
{% if recent_tokens %} {% for token in recent_tokens %} {% endfor %}
거래번호 판매금액 적립포인트 상태 발행일 적립일
{{ 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 '-' }}
{% else %}

발행된 QR이 없습니다.

{% endif %}