Files
wdm/build/templates/maschinenverwaltung.html
T
bryan.hoffmann 36180448e1
Build und Push Docker Image / build-and-push (push) Failing after 49s
Initial commit
2026-08-20 12:24:38 +02:00

44 lines
1.5 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="back-row top">
<a class="big-btn small neutral" href="{{ url_for('leitstand_home') }}">&#8592; Zur&uuml;ck</a>
<form method="post" action="{{ url_for('maschinenverwaltung_logout') }}" class="order-form" style="display:inline-block;width:auto;margin-left:12px;">
<button type="submit" class="icon-btn">Abmelden</button>
</form>
</div>
<div class="btn-grid" style="margin-bottom:10px;">
<a class="big-btn small primary" href="{{ url_for('maschinenverwaltung_neu') }}">&#10133; Neue Maschine anlegen</a>
</div>
{% if not maschinen %}
<div class="empty-state">Keine Maschinen vorhanden.</div>
{% else %}
<div class="list-meta">{{ maschinen|length }} Maschinen</div>
<div class="table-wrap">
<table class="data-table">
<thead>
<tr><th>ID</th><th>Name</th><th>Standort</th><th class="col-actions"></th></tr>
</thead>
<tbody>
{% for m in maschinen %}
<tr>
<td>{{ m.id }}</td>
<td>{{ m.name or '' }}</td>
<td>{{ m.standort or '' }}</td>
<td class="col-actions">
<div class="row-actions">
<a class="icon-btn" href="{{ url_for('maschinenverwaltung_bearbeiten', maschine_id=m.id) }}">Bearbeiten</a>
<form method="post" action="{{ url_for('maschinenverwaltung_loeschen', maschine_id=m.id) }}" class="order-form">
<button type="submit" class="icon-btn danger">L&ouml;schen</button>
</form>
</div>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
{% endblock %}