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