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

Bunnies

{% set player = current_user.player_in(game) %} {% for bunny in game.bunnies() %} {% endfor %}
Player Name Times Caught 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(offset=hunter_delay) %} {% if location %}{{ moment(location.timestamp).fromNow()}} {% else %} {{ location }} {% endif %} {% endwith %}

(Accepted/Denied/Not reviewed)
{% include '_game_player_info.html' %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}