| {{ player.name }} | 
                {% for gameplayer in player.user_games if gameplayer.game == game %}
                {{ gameplayer.role.name }} | 
                {% endfor  %}
                {{ player.found_objectives | selectattr('game', '==', game)|list|length}} | 
                {{ player.caught_players | selectattr('game', '==', game)|list|length}} | 
                {{ player.caught_by_players | selectattr('game', '==', game)|list|length}} | 
                {% with location = player.last_location(game) %}
                        {% if location %}{{ moment(location.timestamp).fromNow()}}: {% endif %}
                        {{ location }}
                {% endwith %} | 
                
                    
                 | 
            
            {% endfor %}