Files
appstore/apps/sqlpage/0.45.0/site-template/delete.sql
T
2026-07-31 03:58:42 +08:00

17 lines
488 B
SQL

delete from todos
where id = $todo_id and $confirm = 'yes'
returning
'redirect' as component,
'/' as link;
select 'dynamic' as component, sqlpage.run_sql('shell.sql') as properties;
select
'alert' as component,
'red' as color,
'Confirm deletion' as title,
'Are you sure you want to delete the following todo item?\n\n> ' || title as description_md,
'?todo_id=' || $todo_id || '&confirm=yes' as link,
'Delete' as link_text
from todos where id = $todo_id;