Initial commit
Build und Push Docker Image / build-and-push (push) Failing after 49s

This commit is contained in:
2026-08-20 12:24:38 +02:00
commit 36180448e1
29 changed files with 2917 additions and 0 deletions
@@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block content %}
<div class="confirm-box">
<h2>Wirklich beenden?</h2>
<p>Die Sollmenge ({{ soll_fmt }}) wurde noch nicht erreicht.<br>Bisher gemeldet: {{ bisherige_fmt }}.</p>
<div class="modal-actions">
<a class="big-btn neutral" href="{{ url_for('machine_main', maschine_id=maschine.id) }}">Abbrechen</a>
<form method="post" action="{{ url_for('machine_beenden', maschine_id=maschine.id) }}" class="order-form">
<button type="submit" class="big-btn red">Ja, beenden</button>
</form>
</div>
</div>
{% endblock %}