{% extends "base.html" %} {% block title %}Rüstpläne · Werkstatt{% endblock %} {% block breadcrumb %}

Werkstatt / Rüstpläne

{% endblock %} {% block heading %}Rüstpläne / Tool-Setups{% endblock %} {% block topbar_actions %} {% endblock %} {% block content %}

Wiederverwendbare Werkzeug-Setups

Komplette Magazin-Belegungen für wiederkehrende Bearbeitungen — beim Rüsten mit einem Klick laden

{% if machines %}
{% endif %}
{% if not setups %}

Noch keine Rüstpläne angelegt. „+ Neuer Rüstplan" oben rechts erstellt einen.

{% else %} {% for s in setups %}
{{ s.name }}
{% if s.machine_name %}{{ s.machine_name }}{% endif %} {% if s.machine_group %}{{ s.machine_group }}{% endif %} {% if s.material %}{{ s.material }}{% endif %} {% if s.process_type %}{{ s.process_type }}{% endif %} {{ s.item_count }} Werkzeug{% if s.item_count != 1 %}e{% endif %}
{% if s.description %}
{{ s.description }}
{% endif %}
{% endfor %} {% endif %}
{% endblock %}