- {{ 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) %}
+ | {{ player.user.name }} |
+ {{ player.role.name }} |
+ {{ player.found_objectives | list | length }} |
+ {{ player.caught_players | list | length }} |
+ {{ player.caught_by_players | list | length }} |
+ {% with location = player.last_location() %}
{% if location %}{{ moment(location.timestamp).fromNow()}}: {% endif %}
{{ location }}
{% endwith %} |
-
+ |
|