stash light
This commit is contained in:
29
templates/admin/document/new_version.html.twig
Normal file
29
templates/admin/document/new_version.html.twig
Normal file
@@ -0,0 +1,29 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user