{% 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
{% endblock %}