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

Probe: {{ probe.serial_number }}

{% if probe.retired_at %}Retired{% else %}Active{% endif %}
Details
Serial Number
{{ probe.serial_number }}
Created
{{ probe.created_at.strftime('%Y-%m-%d') }}
{% if probe.retired_at %}
Retired
{{ probe.retired_at.strftime('%Y-%m-%d') }}
{% endif %}
{% if channels %}
Channels
{% for channel in channels %} {% endfor %}
Serial Number Parameter Actions
{{ channel.serial_number }} {{ channel.parameter.parameter_name }} View
{% else %}
No channels found for this probe
{% endif %} {% if not probe.retired_at %}
Add Channel
Must be a 16-character hex number (0-9, A-F)
{% endif %} {% if locations %}
Location History
{% for location in locations %} {% endfor %}
Location Start Date End Date
{{ location.location.name }} {{ location.start_date.strftime('%Y-%m-%d') }} {% if location.end_date %} {{ location.end_date.strftime('%Y-%m-%d') }} {% else %} Current {% endif %}
{% else %}
No location history found for this probe
{% endif %}
Back to List {% if not probe.retired_at %}
{% endif %} {% if not channels %} {% endif %}
{% endblock %}