30 lines
684 B
Twig
30 lines
684 B
Twig
{% extends 'admin/base.html.twig' %}
|
|
|
|
{% block title %}Neue Version{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<a href="{{ path('admin_document_show', {id: document.id}) }}"
|
|
class="btn btn-sm btn-outline-light mb-3">
|
|
← Zurück
|
|
</a>
|
|
|
|
<h1 class="h4 mb-4">
|
|
Neue Version für: {{ document.title }}
|
|
</h1>
|
|
|
|
<form method="post" enctype="multipart/form-data">
|
|
|
|
<div class="mb-3">
|
|
<label class="form-label">Datei auswählen</label>
|
|
<input type="file" class="form-control" name="file" required>
|
|
</div>
|
|
|
|
<button class="btn btn-light">
|
|
Version hochladen
|
|
</button>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|