{% extends 'player_base.html' %} {% block head %} {{ super() }} {% endblock %} {% block player_app_content %}

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 %}
{% include '_game_player_info.html' %}
{% if game.objectives %}
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}