{% extends "base.html" %} {% block title %}{{ location.name }} - NRL Detail{% endblock %} {% block content %}

{{ location.name }}

Noise Recording Location • {{ project.name }}

{% if assigned_unit %} Unit Assigned {% else %} No Unit Assigned {% endif %}

Location Details

Name
{{ location.name }}
{% if location.description %}
Description
{{ location.description }}
{% endif %} {% if location.address %}
Address
{{ location.address }}
{% endif %} {% if location.coordinates %}
Coordinates
{{ location.coordinates }}
{% endif %}
Created
{{ location.created_at|local_datetime if location.created_at else 'N/A' }}

Unit Assignment

{% if assigned_unit %}
{% if assigned_unit.slm_model %}
Model
{{ assigned_unit.slm_model }}
{% endif %} {% if assignment %}
Assigned Since
{{ assignment.assigned_at|local_datetime if assignment.assigned_at else 'N/A' }}
{% if assignment.notes %}
Notes
{{ assignment.notes }}
{% endif %} {% endif %}
{% else %}

No unit currently assigned

{% endif %}

Total Sessions

{{ session_count }}

Data Files

{{ file_count }}

Active Session

{% if active_session %} Recording {% else %} Idle {% endif %}

{% if assigned_unit %} {% endif %}
{% endblock %}