{% extends 'base.html' %} {% block head %} {{ super() }} {% endblock %} {% 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 %}
Objective Name Latitude Longitude Amount of players that found it Hash
{{ objective.name }} {{ objective.latitude }} {{ objective.longitude }} Placeholder {{ objective.hash }}
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}