{% extends "base.html" %} {% block title %}Dashboard — KittyRec Admin{% endblock %} {% block head %} {% endblock %} {% block content %}
Total Players
{{ total_players }}
registered accounts
Online Now
{{ online_count }}
active connections
Sessions
{{ session_count }}
active Photon rooms
Pending Gifts
{{ pending_gifts }}
unopened boxes
Banned
{{ banned_count }}
active bans

Online Players

{{ online_count }}

Loading...

Active Sessions

View all
{% if sessions %}
{% for s in sessions %} {% endfor %}
RoomActivityPlayersMode
{{ s.photon_room_id }} {{ s.name }} {{ s.players|length }} {% if s.sandbox %}Sandbox {% elif s.private %}Private {% else %}Public{% endif %}
{% else %}

No active sessions

{% endif %}

Recent Moderation

View all
{% if recent_bans %} {% for b in recent_bans %}
{{ b.action }} {{ b.username }} {{ b.reason[:40] if b.reason else '—' }} {{ b.created_at[:10] }}
{% endfor %} {% else %}

No recent actions

{% endif %}
{% if SCOPE_ADMIN in scopes %}

Store

Force the store to rotate to a new random selection before the 12-hour window expires.

Quick Gift All

{% endif %} {% include 'admin/partials/ban_modal.html' %} {% endblock %} {% block scripts %} {% endblock %}