{% extends "base.html" %} {% block content %}
{% if probe_id %}

Location History for Probe {{ probe_id }}

{% else %}

All Locations

Add New Location

Select a probe to view its location history

{% endif %} {% if locations and not probe_id %}
Locations List
{% for location in locations %} {% endfor %}
Name Address Contact Phone Email
{{ location.name }} {{ location.address }} {{ location.contact_name }} {{ location.contact_phone }} {{ location.contact_email }}
{% endif %}
Assignment Timeline
{% if chart_data_json %} {% else %}

No location data available

{% endif %}
{% if location_data %}
Location Details
{% for item in location_data %} {% endfor %}
Location Start Date End Date Duration
{{ item.location.location_id }} {{ item.location.start_date.strftime('%Y-%m-%d') }} {{ item.location.end_date.strftime('%Y-%m-%d') if item.location.end_date else 'Current' }} {{ item.duration_days }} days
{% endif %}
{% block scripts %} {{ super() }} {% endblock %} {% endblock %}