Aggiunta pulsante elimina

This commit is contained in:
2026-02-26 13:43:56 +01:00
parent 8a15a29dcf
commit 326362d157

2
app.py
View File

@@ -54,7 +54,7 @@ def web_ui():
html = "<table border>" html = "<table border>"
for ciscomerda in compiti: for ciscomerda in compiti:
html += "<tr>" html += "<tr>"
html += f"<td>{ciscomerda["descrizione"]}</td>" html += f"<td>{ciscomerda["descrizione"]}</td><td><a href=\"/form_delete\" class=\"button\">Elimina</a>"
html += "</tr>" html += "</tr>"
html += "</table>" html += "</table>"