Added the capability to upload CSV files

This commit is contained in:
Manuel Forcén Muñoz 2024-03-18 23:04:48 +01:00
parent 90b02eef79
commit d1e736d7a7
19 changed files with 678 additions and 99 deletions

View file

@ -13,8 +13,7 @@
}
.sidebar {
max-width: 12rem;
flex-grow: 1;
width: 12rem;
}
.sidebar a {
@ -26,10 +25,11 @@
<body>
<div class="flex h-full">
<aside class="sidebar bg-stone-300 p-4 flex flex-col">
<a class="hover:bg-stone-400" href="/">Inicio</a>
<a class="hover:bg-stone-400" href="/rules">Reglas</a>
<a class="hover:bg-stone-400" href="/">Start</a>
<a class="hover:bg-stone-400" href="/rules">Rules</a>
<a class="hover:bg-stone-400" href="/categories">Categories</a>
</aside>
<div class="p-4 grow">
<div class="p-4 grow h-full overflow-auto">
{% block body %}
{% endblock body %}
</div>