{% extends "base.html" %} {% block title %}Sign-off #{{ order.id }} | Customer Log & Sign Off{% endblock %} {% block content %}

Sign-off #{{ order.id }}

{{ order.company_name }} · Created {{ order.created_at.replace('T', ' ') }}

Back to Sign Off Open / print all serial labels
Customer
{{ order.company_name }}
Created
{{ order.created_at.replace('T', ' ') }}
Machines / labels
{{ order["items"]|length }}
Delivery address
{{ order.delivery_address or '-' }}
{% for item in order["items"] %}

{{ item.display_name }}

{{ item.serial_no }}
Open / print serial label
Serial label preview
{{ item.product_name }}
Model: {{ item.product_model or '-' }}
Serial No {{ item.serial_no }}
{% if item.label_rating %}
{{ item.label_rating }}
{% endif %}
Manufactured by:
{{ item.manufacturer_name }}
{{ item.manufacturer_address }}
Date: {{ item.label_date }}
Lancing CE mark
Model / reference{{ item.product_model or '-' }}
Electrical rating for label{{ item.label_rating or '-' }}
Supply voltage{{ item.supply_voltage if item.supply_voltage is not none else '-' }} V
Neutral to earth{{ item.neutral_to_earth if item.neutral_to_earth is not none else '-' }} V
Earth continuity{{ item.earth_continuity if item.earth_continuity is not none else '-' }} Ω
Insulation resistance{{ item.insulation_resistance if item.insulation_resistance is not none else '-' }} Ω
24V DC output{{ item.dc_output_24v if item.dc_output_24v is not none else '-' }} V
E-stop active: {{ 'Yes' if item.estop_active else 'No' }}
E-stop registered: {{ 'Yes' if item.estop_registered else 'No' }}
Guard interlock: {{ 'Yes' if item.guard_interlock else 'No' }}
{% endfor %}
{% endblock %}