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