{% extends 'player_base.html' %} {% block head %} {{ super() }} {% endblock %} {% block player_app_content %}

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

{% include '_game_player_info.html' %}

Bunnies:

{% set player = current_user.player_in(game) %} {% for bunny in game.bunnies() %} {% endfor %}
Player Name Times Caught (Accepted/Denied/Not reviewed) Last location
{{ bunny.user.name }} {{ bunny.player_caught_by_players | selectattr('catching_player', '==', player) | selectattr('review.name', '==', 'accepted') |list|length}} / {{ bunny.player_caught_by_players | selectattr('catching_player', '==', player) | selectattr('review.name', '==', 'denied') |list|length}} / {{ bunny.player_caught_by_players | selectattr('catching_player', '==', player) | selectattr('review.name', '==', 'none') |list|length}} {% with location = bunny.last_location() %} {% if location %}{{ moment(location.timestamp).fromNow()}}: {% endif %} {{ location }} {% endwith %}
{% endblock %} {% block scripts %} {{ super() }} {{ moment.include_moment() }} {% endblock %}