{% extends "base.html" %} {% import 'bootstrap/wtf.html' as wtf %} {% block head %} {{ super() }} {% endblock %} {% block app_content %}

Player: {{ player.user.name }}


{{ wtf.quick_form(form, button_map={'submit': 'primary'}) }}
{% if player.user.auth_hash and not player.user.password_hash %} {% elif not player.user.password_hash %}
{% endif %}
{% if player.caught_players %}

Caught Players:

{% for pcp in player.player_caught_players %} {% endfor %}
Player Name Review Time
{{ pcp.caught_player.user.name }} {{ pcp.review.name.title() }} {{ moment(pcp.timestamp).fromNow() }}
{% endif %} {% if player.player_found_objectives %}

Found Objectives:

{% for pfo in player.player_found_objectives %} {% endfor %}
Objective name Time Coordiates
{{ pfo.objective.name }} {{ moment(pfo.timestamp).fromNow() }} {{ pfo.objective.latitude }}, {{ pfo.objective.longitude }}
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}