{% extends "base.html" %} {% block title %}Messung erfassen — {{ tpl.name }}{% endblock %} {% block breadcrumb %}

Messprotokolle / Messung erfassen

{% endblock %} {% block heading %}Messung erfassen{% endblock %} {% block content %}

{{ tpl.name }}

{{ tpl.description or '' }}

automatisch der angemeldete Mitarbeiter

Maße eintragen

Live-Validierung: grün = i.O., rot = außer Toleranz

{% for p in points %} {% set min_v = p.nominal + p.tol_minus %} {% set max_v = p.nominal + p.tol_plus %} {% endfor %}
# Maß Soll Toleranz Min Max Ist-Wert * OK?
{{ loop.index }}
{{ p.name }}
{{ p.nominal }} {{ p.unit }} +{{ p.tol_plus }} / {{ p.tol_minus }} {{ "%.4f"|format(min_v) }} {{ "%.4f"|format(max_v) }} offen
Abbrechen
noch keine Werte eingetragen
{# RS232-Live-Werte-Widget — fügt Werte vom Messmittel direkt ins fokussierte Feld ein #} {% include '_serial_live_widget.html' ignore missing %} {% endblock %}