{% extends "base.html" %} {% block title %}Creator Admin Panel - {% if game.crew_name %}{{ game.crew_name }}{% else %}Game #{{ game.id[:8] }}{% endif %}{% endblock %} {% block content %}

Game Creator Admin Panel

Use this dashboard to copy magic sheet links for players who misplace theirs.

Player Magic Links

{% for p in game.players %}
{{ p.name }} {% if p.is_creator %}Creator{% endif %} (Rank {{ p.rank }}, Role: {{ p.role or 'None' }})
{% else %}

No players have joined yet.

{% endfor %}

Lobby Details

Game Phase: {{ game.phase.replace('_', ' ').title() }}

Scene Number: {{ game.current_scene_number }}

Join URL (Share this with players):

{% endblock %}