{% extends "admin/base.html" %} {% block page_title %}📊 داشبورد{% endblock %} {% block content %}
{{ users_count }}
👥 {{ t('users') }}
{{ games_count }}
🎮 {{ t('games') }}
{{ matches_count }}
🏆 {{ t('daily_matches') }}
{{ txs_today }}
📅 تراکنش‌های امروز
🏆 {{ t('recent_matches') }}
{% for m in matches %} {% else %} {% endfor %}
{{ t('match_title') }}{{ t('match_game') }}{{ t('match_start') }}{{ t('match_entry_fee') }}{{ t('match_status') }}{{ t('action') }}
{{ m.title }} {{ m.game.icon }} {{ m.game.name }} {{ m.starts_at.strftime('%Y-%m-%d %H:%M') }} {{ m.entry_fee }} {{ m.status }} ✏️ 🗑️
{{ t('no_data') }}
💬 پیام‌های پشتیبانی اخیر
{% for msg in support_messages %} {% else %} {% endfor %}
کاربرموضوعپیامتاریخوضعیت
{{ msg.user.username if msg.user else 'ناشناس' }} {{ msg.subject }} {{ msg.message }} {{ msg.created_at.strftime('%Y-%m-%d %H:%M') }} {{ msg.status }}
پیامی وجود ندارد
👥 آخرین کاربران
{% for u in users %} {% endfor %}
{{ t('email') }}{{ t('username') }}{{ t('created') }}{{ t('status') }}
{{ u.email }}{{ u.username }} {{ u.created_at.strftime('%Y-%m-%d') }} {{ 'فعال' if u.is_active else 'غیرفعال' }}
{% endblock %}