{% 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 %}
{% endblock main_content %}