{% extends 'base.html' %} {% block app_content %}

{{ game.name }} Dashboard

Players:

{% for player in game.players %} {% for gameplayer in player.player_games if gameplayer.game == game %} {% endfor %} {% endfor %}
Player Name Role Objectives found Bunnies Caught Last location
{{ player.name }}{{ gameplayer.role.name }}{{ "Placeholder" }} {{ "Placeholder" }} Placeholder

Objectives:

Add new objective

{% if game.objectives %}
{% for objective in game.objectives %} {% endfor %}
Hash Objective Name Latitude Longitude Amount of players that found it
{{ objective.hash }} {{ objective.name }} {{ objective.latitude }} {{ objective.longitude }} Placeholder
{% endif %} {% endblock %}