{% extends "base.html" %} {% block title %}MDE-Dashboard{% endblock %} {% block heading %}Maschinendaten · Live{% endblock %} {% block content %}

Maschinen-Übersicht

Live-Status aller MDE-fähigen Maschinen · Daten aktualisieren alle 15 s · Konfiguration · Doku

{% for m in machines %} {% else %} {% endfor %}
Maschine Steuerung Status Stückzähler Spindel Programm Letztes Update
{{ m.name }} {{ m.controller_type or '—' }} {% if m.protocol == 'opcua' %}OPC-UA{% endif %} {% set s = m.status or 'unknown' %} {% if s=='run' %}🟢 läuft {% elif s=='alarm' %}🔴 Alarm {% elif s=='idle' %}⚪ Stillstand {% else %}❓ unbekannt{% endif %} {{ m.part_count if m.part_count is not none else '—' }} {% if m.spindle_rpm %}{{ m.spindle_rpm }} U/min{% else %}—{% endif %} {{ m.current_nc or '—' }} {{ m.ts or '—' }} Detail
Keine Maschinen konfiguriert. Maschine anlegen → Protokoll auf opcua oder im Mock-Mode lassen.
{% endblock %}