diff --git a/app.py b/app.py
index 0c791f3..6a38db4 100644
--- a/app.py
+++ b/app.py
@@ -54,7 +54,7 @@ def web_ui():
html = "
"
for ciscomerda in compiti:
html += ""
- html += f"| {ciscomerda["descrizione"]} | "
+ html += f"{ciscomerda["descrizione"]} | Elimina"
html += " |
"
html += "
"
@@ -74,6 +74,6 @@ def form_add():
d = request.args.get("descrizione")
compiti.append({"id": id_counter, "descrizione": d})
id_counter += 1
- return redirect("/ui")
+ return redirect("/ui")
app.run("0.0.0.0")