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,21 @@
{% extends "base.html" %}
{% block content %}
<div class="back-row top">
<a class="big-btn small neutral" href="{{ url_for('maschinenverwaltung') }}">&#8592; Zur&uuml;ck</a>
</div>
<form method="post" action="{{ url_for('maschinenverwaltung_neu') if neu else url_for('maschinenverwaltung_bearbeiten', maschine_id=maschine.id) }}" class="compact-form">
<div class="card compact">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" value="{{ maschine.name or '' }}" autofocus required>
</div>
<div class="form-group">
<label for="standort">Standort</label>
<input type="text" id="standort" name="standort" value="{{ maschine.standort or '' }}">
</div>
</div>
<div class="action-row compact">
<button type="submit" class="big-btn small primary">&#10003; Speichern</button>
</div>
</form>
{% endblock %}