{% extends "portal/base.html" %} {% block title %}Your locations{% endblock %} {% block content %}

Your monitoring locations

Live sound levels for your active locations.

{# M1 task 4 fleshes this out into location tiles + a map. #} {% if locations %}
{% for loc in locations %}
{{ loc.name }}
{{ loc.address or loc.project_name }}
{% endfor %}
{% else %}
No active monitoring locations yet.
{% endif %} {% endblock %}