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
| Serial Number |
Parameter |
Actions |
{% for channel in channels %}
| {{ channel.serial_number }} |
{{ channel.parameter.parameter_name }} |
View
|
{% endfor %}
{% else %}
No channels found for this probe
{% endif %}
{% if not probe.retired_at %}
{% endif %}
{% if locations %}
Location History
| Location |
Start Date |
End Date |
{% for location in locations %}
| {{ location.location.name }} |
{{ location.start_date.strftime('%Y-%m-%d') }} |
{% if location.end_date %}
{{ location.end_date.strftime('%Y-%m-%d') }}
{% else %}
Current
{% endif %}
|
{% endfor %}
{% else %}
No location history found for this probe
{% endif %}
Back to List
{% if not probe.retired_at %}
{% endif %}
{% if not channels %}
{% endif %}