{% extends 'base.html' %}
{% block head %}
{{ super() }}
{% endblock %}
{% block app_content %}
{{ game.name }} Dashboard
Players:
Player Name |
Role |
Objectives found |
Bunnies Caught |
Last location |
{% for player in game.players %}
{{ player.name }} |
{% for gameplayer in player.player_games if gameplayer.game == game %}
{{ gameplayer.role.name }} |
{% endfor %}
{{ "Placeholder" }} |
{{ "Placeholder" }} |
Placeholder |
|
{% endfor %}
Objectives:
Add new objective
{% if game.objectives %}
Objective Name |
Latitude |
Longitude |
Amount of players that found it |
Hash |
|
{% for objective in game.objectives %}
{{ objective.name }} |
{{ objective.latitude }} |
{{ objective.longitude }} |
Placeholder |
{{ objective.hash }} |
|
{% endfor %}
{% endif %}
{% endblock %}
{% block scripts %}
{{ super() }}
{% endblock %}