{% extends 'base.html' %} {% block head %} {{ super() }} {% endblock %} {% block app_content %}

{{ game.name }}: {{ current_user.name }}

{% include '_game_player_info.html' %}

Bunnies:

{% for player in game.bunnies() %} {% endfor %}
Player Name Times Caught Last location
{{ player.user.name }} {{ player.caught_by_players | selectattr('catching_player', '==', current_user.player_in(game)) |list|length}} {% with location = player.user.last_location(game) %} {% if location %}{{ moment(location.timestamp).fromNow()}}: {% endif %} {{ location }} {% endwith %}
{% endblock %} {% block scripts %} {{ super() }} {{ moment.include_moment() }} {% endblock %}