As part of a delete function I have the following lines of code:
message='All data related to this node have been deleted'
form=crud.update(table=db.Node,record=row,next=URL('index'),message=message,deletable=True)When the user checks the check to delete box and submits the form, the function redirects but displays 'record deleted' instead of the message. Why is that? Kind regards, Annet

