From c2fab079a58422eace63534a8fd82f52e6a462d9 Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Thu, 5 Mar 2026 13:15:48 +0100 Subject: [PATCH] Aggiustato codebase pagina WebUI per larghezza mobile --- app.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index db8d7e7..4dff9ee 100644 --- a/app.py +++ b/app.py @@ -70,7 +70,9 @@ def delete_compito(id): @app.route("/ui") def web_ui(): # Tabella compiti - html = "" + html = "" + html += "Gestione compiti" + html += "
" for ciscomerda in compiti: html += "" html += f"
{ciscomerda["descrizione"]}Elimina" @@ -80,7 +82,7 @@ def web_ui(): html += "
" html += "" html += "" - html += "
" + html += "" return html, 200