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

{{ game.name }} Dashboard

Objective Locations:

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