{% extends "base.html" %} {% block title %}{{ _('Riepilogo') }} - {{ recipe.name }}{% endblock %} {% block content %}
{{ _('Codice') }}
{{ recipe.code }}
{{ _('Nome') }}
{{ recipe.name }}
{{ _('Versione') }}
{{ recipe.current_version.version_number if recipe.current_version else recipe.version }}
{{ _('Lotto') }}
{{ lot_number or '-' }}
{{ _('Seriale') }}
{{ serial_number }}
{{ _('Totale') }}
{{ total_count }}
{{ _('Conformi') }}
{{ pass_count }}
{{ _('Attenzione') }}
{{ warning_count }}
{{ _('Non Conformi') }}
{{ fail_count }}
| # | {{ _('Descrizione') }} | {{ _('Nominale') }} | {{ _('Valore') }} | {{ _('Deviazione') }} | {{ _('Esito') }} | {{ _('Metodo') }} |
|---|---|---|---|---|---|---|
| {{ m.subtask.marker_number }} | {{ m.subtask.description }} | {{ "%.3f"|format(m.subtask.nominal) }} {{ m.subtask.unit }} | {{ "%.3f"|format(m.value) }} {{ m.subtask.unit }} | {{ "%+.3f"|format(m.deviation) }} | {% if m.pass_fail == 'pass' %} {{ _('Pass') }} {% elif m.pass_fail == 'warning' %} {{ _('Warning') }} {% elif m.pass_fail == 'fail' %} {{ _('Fail') }} {% else %} - {% endif %} |
{% if m.method == 'manual' %}
{{ _('Manuale') }}
{% elif m.method == 'caliper' %}
{{ _('Calibro') }}
{% else %}
-
{% endif %}
|