{% extends 'admin/custom_base.html' %} {% block body %}
| Player | Level | Room | Actions |
|---|---|---|---|
| {{ p.username }} {% if p.developer %}Dev{% endif %} {% if p.screen_mode %}Screen{% else %}VR{% endif %} | {{ p.level }} | {{ p.room }} |
{% if SCOPE_ADMIN in scopes %}
{% endif %}
|
| Room | Activity | Players | Mode |
|---|---|---|---|
| {{ s.photon_room_id }} | {{ s.name }} | {{ s.players|length }} | {% if s.sandbox %}Sandbox {% elif s.private %}Private {% else %}Public{% endif %} |
| # | Player | Level | Playtime | Sessions |
|---|---|---|---|---|
| Loading… | ||||
| Action | Admin | Details | Time |
|---|---|---|---|
| {% if 'ban' in a.action and 'unban' not in a.action %}{{ a.action|upper }} {% elif a.action == 'unban' %}UNBAN {% elif a.action == 'login' %}LOGIN {% elif a.action == 'disconnect' %}KICK {% elif a.action in ('gift_all', 'gift_xp', 'gift_player') %}GIFT {% elif a.action == 'reroll_store' %}STORE {% elif a.action == 'toggle_dev' %}DEV {% elif a.action == 'reset_password' %}RESET PASS {% elif a.action == 'send_dm' %}DM {% elif a.action == 'maintenance_mode' %}MAINT {% elif a.action == 'git_sync' %}GIT {% elif a.action == 'create_room' %}ROOM {% else %}{{ a.action|upper }}{% endif %} | {{ a.admin_name }} | {{ (a.details or '—')|e }} | {{ a.created_at[:16] if a.created_at else '' }} |