35 lines
773 B
HTML
35 lines
773 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Dashboard</title>
|
|
</head>
|
|
<body>
|
|
<h1>Dashboard</h1>
|
|
|
|
<h2>Players</h2>
|
|
<ul>
|
|
{% for player in players %}
|
|
<li>
|
|
{{ player.username }} ({{ player.ip }})
|
|
<a href="{{ url_for('player_page', player_id=player.id) }}">View Schedule</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<a href="{{ url_for('add_player') }}">Add Player</a>
|
|
|
|
<h2>Groups</h2>
|
|
<ul>
|
|
{% for group in groups %}
|
|
<li>
|
|
{{ group.name }} ({{ group.players | length }} players)
|
|
</li>
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
<a href="{{ url_for('add_group') }}">Add Group</a>
|
|
|
|
<h2>Content Upload</h2>
|
|
<a href="{{ url_for('upload_content') }}">Upload Content</a>
|
|
</body>
|
|
</html>
|