Details
- Due Date
-
{% if work_order.due_date and work_order.due_date is not string %}
{{ work_order.due_date.strftime('%Y-%m-%d') }}
{% else %}
{{ work_order.due_date or '' }}
{% endif %}
- Redmine ID
- {{ work_order.redmine or 'Not specified' }}
{% if work_order.calibrations %}
Associated Calibrations
| Channel |
Date |
Status |
{% for cal in work_order.calibrations %}
| {{ cal.channel.serial_number }} |
{{ cal.date.strftime('%Y-%m-%d') }} |
{% if cal.passed %}
Passed
{% else %}
Failed
{% endif %}
|
{% endfor %}
{% endif %}