- manga import
- read from cbz
- save cbz from scrapping
- menu interactions
This commit is contained in:
Jérémy Guillot
2024-06-27 11:28:45 +02:00
parent d52b724df5
commit 115e4336ab
28 changed files with 1239 additions and 302 deletions

View File

@@ -0,0 +1,13 @@
{% 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 %}