{% 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') }}
| {{ t('match_title') }} | {{ t('match_game') }} | {{ t('match_start') }} | {{ t('match_entry_fee') }} | {{ t('match_status') }} | {{ t('action') }} |
{% for m in matches %}
| {{ m.title }} |
{{ m.game.icon }} {{ m.game.name }} |
{{ m.starts_at.strftime('%Y-%m-%d %H:%M') }} |
{{ m.entry_fee }} |
{{ m.status }} |
✏️
🗑️
|
{% else %}
| {{ t('no_data') }} |
{% endfor %}
💬 پیامهای پشتیبانی اخیر
| کاربر | موضوع | پیام | تاریخ | وضعیت |
{% for msg in support_messages %}
| {{ msg.user.username if msg.user else 'ناشناس' }} |
{{ msg.subject }} |
{{ msg.message }} |
{{ msg.created_at.strftime('%Y-%m-%d %H:%M') }} |
{{ msg.status }} |
{% else %}
| پیامی وجود ندارد |
{% endfor %}
👥 آخرین کاربران
| {{ t('email') }} | {{ t('username') }} | {{ t('created') }} | {{ t('status') }} |
{% for u in users %}
| {{ u.email }} | {{ u.username }} |
{{ u.created_at.strftime('%Y-%m-%d') }} |
{{ 'فعال' if u.is_active else 'غیرفعال' }} |
{% endfor %}
{% endblock %}