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

Probe Management

Add New Probe
All Probes
{% if probes %}
{% for probe in probes|sort(attribute='model_name') %} {% if probe.channels %} {% for channel in probe.channels %} {% endfor %} {% endif %} {% endfor %}
Model Created Retired Actions
{{ probe.model_name }} {{ probe.created_at.strftime('%Y-%m-%d') }} {% if probe.retired_at %} Yes {% else %} No {% endif %} View/Edit
Channel: {{ channel.parameter.parameter_name }} ({{ channel.serial_number }}) View
{% else %}
No probes found
{% endif %}
{% endblock %}