I have normal Django form. As I had a short server delay after pressing the "save" button of my form, I just clicked once more and Oops I have the entries twice in the database.
So my question: I am wondering whether there exists an mechanism which by pressing the save button several times prevents that identical entries are created?
Is a possible solution really hashing the entries like in this post: prevent a form to be submitted multiple times - django
Thanks for your help.