{% extends 'base.html' %} {% block head %} {{ super() }} {% endblock %} {% block app_content %}
Player Name | Times Caught | Last location |
---|---|---|
{{ player.name }} | {{ player.caught_by_players | selectattr('game', '==', game) | selectattr('catching_player', '==', current_user) |list|length}} | {% with location = player.last_location(game) %} {% if location %}{{ moment(location.timestamp).fromNow()}}: {% endif %} {{ location }} {% endwith %} |