{% if units %}
{% for item in units %}

{{ item.unit.id }}

{% if item.active_session %} Recording {% else %} Available {% endif %}
{% if item.location %}
{% if project_type and project_type.id == 'sound_monitoring' %} NRL: {% else %} Location: {% endif %} {{ item.location.name }}
{% endif %} {% if item.unit.slm_model %}
Model: {{ item.unit.slm_model }}
{% endif %}
Sessions: {{ item.session_count }}
Files: {{ item.file_count }}
{% if item.assignment.assigned_at %}
Assigned: {{ item.assignment.assigned_at.strftime('%Y-%m-%d %H:%M') }}
{% endif %}
{% if item.unit.note %}

{{ item.unit.note }}

{% endif %}
View Unit {% if item.location %} View NRL {% endif %}
{% endfor %}
{% else %}

No units assigned yet

Assign units to locations to get started

{% endif %}