44 lines
1.5 KiB
HTML
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') }}">← Zurü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') }}">➕ 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öschen</button>
|
|
</form>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|