Files
Mangarr/templates/activity/index.html.twig
jerem f7bb7b9148 Added:
- activity on menu
- starting activity page
2024-06-17 22:36:37 +02:00

40 lines
1.4 KiB
Twig

{% extends 'base.html.twig' %}
{% block body %}
{# TODO styliser cette page #}
<table class="min-w-full bg-white">
<thead class="bg-gray-800 text-white">
<tr>
<th class="w-1/12 py-2 px-4">
<input type="checkbox">
</th>
<th class="w-2/12 py-2 px-4 text-left">Manga</th>
<th class="w-1/12 py-2 px-4 text-left">Volume</th>
<th class="w-4/12 py-2 px-4 text-left">Chapter</th>
<th class="w-1/12 py-2 px-4 text-left">Title</th>
<th class="w-1/12 py-2 px-4 text-left">Actions</th>
<th class="w-1/12 py-2 px-4"></th>
</tr>
</thead>
<tbody class="text-gray-700">
{% for manga in status %}
<tr class="border-b">
<td class="py-2 px-4 text-center">
<input type="checkbox">
</td>
<td class="py-2 px-4">{{ manga.manga }}</td>
<td class="py-2 px-4">{{ manga.volume }}</td>
<td class="py-2 px-4">{{ manga.chapter }}</td>
<td class="py-2 px-4">{{ manga.title }}</td>
<td class="py-2 px-4 text-center">
<button class="text-red-500 hover:text-red-700">&times;</button>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<div class="mt-4">
<span>Total records: {{ status|length }}</span>
</div>
{% endblock %}