2025-01-11 19:52:25 +01:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<div class="container mx-auto px-16 mt-4">
|
2025-02-19 14:38:24 +01:00
|
|
|
<div class="block p-6 bg-white border border-gray-200 rounded-lg shadow-sm dark:bg-gray-800 dark:border-gray-700">
|
2025-01-11 19:52:25 +01:00
|
|
|
<h3 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">Ajouter des fichiers dans /{{ path }}</h3>
|
|
|
|
{{ form(form) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Ajouter des fichiers
|
|
|
|
{% endblock %}
|
|
|
|
|