{% if logo_exists %}
{% endif %}
Dashboard
Sign Out
Players
{% for player in players %}
{{ player.username }}
Manage Player
Edit Player
Full Screen
{% if current_user.role == 'admin' %}
Delete
{% endif %}
{% endfor %}
{% if current_user.role == 'admin' %}
Add Player
{% endif %}
Group of Players
{% for group in groups %}
{{ group.name }}
Manage Group
Edit Group
Full Screen
Delete
{% endfor %}
Create Group
Content Upload
Upload Content
{% if current_user.role == 'admin' %}
App Settings
Go to Settings
{% endif %}
{% if current_user.role == 'admin' %}
Server Activity Log
Time
Action
{% for log in server_logs %}
{{ log.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}
{{ log.action }}
{% endfor %}
{% endif %}