14 lines
419 B
Twig
14 lines
419 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
<div class="container mx-auto p-4">
|
|
<h1 class="text-2xl font-bold mb-4">Confirmer l'Importation</h1>
|
|
<p><strong>Titre:</strong> {{ title }}</p>
|
|
<p><strong>Volume:</strong> {{ volume }}</p>
|
|
<form method="post">
|
|
<button type="submit" class="mt-2 btn btn-primary">Importer</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|
|
|