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

{{ game.name }} Dashboard

Objectives:

{% if game.objectives %}
{% for objective in game.objectives %} {% endfor %}
Objective Name Latitude Longitude Times found Hash
{{ objective.name }} {{ objective.latitude }} {{ objective.longitude }} {{ objective.found_by|length }} {{ objective.hash }}
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {{ moment.include_moment() }} {% endblock %}