{% extends 'generic/object.html' %} {% load i18n %} {% block content %}
{% if tiles or markers %}
{% trans "Map Locations" %}
{% for tile in tiles %} {% endfor %} {% for marker in markers %} {% endfor %}
{% trans "Type" %} {% trans "Name" %} {% trans "Location" %}
{% trans "Floor Plan" %} {{ tile.floorplan.name }} {{ tile.floorplan.site }} {% trans "View" %}
{% trans "Site Map" %} {{ marker.label|default:marker.get_marker_type_display }} {% if marker.site %}{{ marker.site }}{% endif %} {{ marker.latitude }}, {{ marker.longitude }} {% trans "View" %}
{% else %}
{% trans "This device has not been placed on any floor plans or map markers." %}
{% endif %}
{% endblock %}