stash light

This commit is contained in:
team 1
2026-02-12 10:03:52 +01:00
parent 5b650a8f28
commit 0bb0c0b42f
51 changed files with 6864 additions and 72 deletions

View File

@@ -0,0 +1,23 @@
{% extends 'admin/base.html.twig' %}
{% block title %}Neues Dokument{% endblock %}
{% block body %}
<h1 class="h4 mb-4">Neues Dokument</h1>
<form method="post" enctype="multipart/form-data">
<div class="mb-3">
<label class="form-label">Titel</label>
<input class="form-control" name="title" required>
</div>
<div class="mb-3">
<label class="form-label">Datei</label>
<input type="file" class="form-control" name="file" required>
</div>
<button class="btn btn-light">Speichern</button>
</form>
{% endblock %}