{% if locations %}
{% for item in locations %}
{{ item.location.name }} {% if item.location.location_type %} {{ item.location.location_type|capitalize }} {% endif %}
{% if item.location.description %}

{{ item.location.description }}

{% endif %} {% if item.location.address %}

{{ item.location.address }}

{% endif %} {% if item.location.coordinates %}

{{ item.location.coordinates }}

{% endif %}
{% if item.assignment %} {% else %} {% endif %}
Sessions: {{ item.session_count }} {% if item.assignment and item.assigned_unit %} Assigned: {{ item.assigned_unit.id }} {% else %} No active assignment {% endif %}
{% endfor %}
{% else %}

No locations added yet

{% endif %}