|
{{ unit.id }}
|
{% if unit.deployed %}
Deployed
{% elif unit.out_for_calibration %}
Out for Cal
{% else %}
Benched
{% endif %}
|
{% if unit.deployed_with_modem_id %}
{{ unit.deployed_with_modem_id }}
{% else %}
None
{% endif %}
|
{% if unit.address %}
{{ unit.address }}
{% elif unit.coordinates %}
{{ unit.coordinates }}
{% else %}
—
{% endif %}
|
{% if unit.last_calibrated %}
{% if unit.next_calibration_due and today %}
{% set days_until = (unit.next_calibration_due - today).days %}
{% if days_until < 0 %}
{% elif days_until <= 14 %}
{% else %}
{% endif %}
{% else %}
{% endif %}
{{ unit.last_calibrated.strftime('%Y-%m-%d') }}
{% else %}
—
{% endif %}
|
{% if unit.note %}
{{ unit.note }}
{% else %}
—
{% endif %}
|
|