{% extends "base.html" %} {% block title %}NC-Programme — Takoma{% endblock %} {% block content %}

⚙ NC-Programme

CNC-/G-Code-Verwaltung mit Toolpath-Visualisierung

📊 DNC-Verlauf 🔢 T-Mapping 🔧 Werkzeugpläne + Neues Programm
{% if programs %}
{% for p in programs %} {% endfor %}
Nr. Name Steuerung Werkstück Zeilen Zeit Status Geändert
{{ p.program_no }} {{ p.name }} {% set prof = profiles.get(p.machine_profile, {}) %} {{ prof.get('name', p.machine_profile) }} {{ p.workpiece or '—' }} {% if p.material %} · {{ p.material }}{% endif %} {{ p.code_lines }} {% if p.cycle_time_sec %} {{ (p.cycle_time_sec // 60) }}:{{ '%02d' % (p.cycle_time_sec % 60) }} {% else %}—{% endif %} {% if p.status == 'released' %} FREIGEGEBEN {% elif p.status == 'archived' %} ARCHIVIERT {% else %} ENTWURF {% endif %} {{ (p.updated_at or p.created_at)[:16].replace('T', ' ') }}
{% else %}

Noch keine NC-Programme

Lege dein erstes G-Code-Programm an — mit Live-Toolpath-Vorschau und Versionierung.

+ Erstes Programm anlegen
{% endif %}
Unterstützte Steuerungen: ISO/EIA · Heidenhain TNC (ISO + Klartext) · Siemens 810D/840D · FANUC
{% endblock %}