{% extends 'base/layout.html' %} {% load static %} {% block title %}Device map{% endblock %} {% block head %} {# Leaflet #} {# Leaflet plugins #} {% endblock %} {% block content %}
{% if map_data %}
{% if non_geolocated_devices %}

    {% for device in non_geolocated_devices %}
  • {{ device.name }} ยท {{ device.device_role.name }}
  • {% endfor %}
{% endif %}
{{ map_data|json_script:"map-data" }} {% else %} Please specify filtering criteria for displaying the map {% endif %}
{% include 'inc/filter_list.html' %}
{% endblock %}