{% extends 'base/layout.html' %} {% load static %} {% block title %}Circuit map{% endblock %} {% block head %} {# Leaflet #} {# Leaflet plugins #} {% endblock %} {% block content-wrapper %}
{% if map_data %}
{% if non_geolocated_sites %}

    {% for site in non_geolocated_sites %}
  • {{ site.name }} · {{ site.tenant.name }} · {{ site.physical_address }}
  • {% endfor %}
{% endif %}
{{ map_data|json_script:"map-data" }} {% else %} Please specify filtering criteria for displaying the map {% endif %}
{% include 'inc/filter_list.html' %}
{% endblock %}