{% extends 'base.html' %} {% block head %} {{ super() }} {% endblock %} {% block app_content %}

{{ game.name }}: {{ current_user.name }}

{% include '_game_player_info.html' %}

Objective Locations:

{% if game.objectives %}
{% for objective in game.objectives %} {% endfor %}
Objective Name Latitude Longitude Found
{{ objective.name }} {{ objective.latitude }} {{ objective.longitude }} {{ 'Yes' if objective in current_user.player_in(game).found_objectives else 'No' }}
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {{ moment.include_moment() }} {% endblock %}