{% extends 'topopartner/base.html' %} {% load static %} {% block title %}Tracks ∣ {{ block.super }}{% endblock title %} {% block head %} {{ block.super }} {% endblock head %} {% block main_content %}
{% if itineraries %}
{% for track in itineraries %}
{% include 'topopartner/map_card.html' %}
{% endfor %}
{% else %}

Empty

Click the button below to create your first itinerary.

{% endif %}
{% if recordings %}
{% for track in recordings %}
{% include 'topopartner/map_card.html' %}
{% endfor %}
{% else %}

Empty

Click the button below to upload your first recording.

{% endif %}
{% if api_key %}
Android API Key
{% else %}

You do not have an Android API Key. If you think you should, please contact an admin.

{% endif %} {% endblock main_content %}