Search code examples
djangosummernote

Save django summer note as typing


I currently have a working install of django-summernote. What I am wondering, is does django offer the ability to have an event trigger when typing into the editor to save the post?


Solution

  • I was able to implement django-autosave into the admin forum which does what I needed. The general gist is they have a Javascript file that uses query to store it in local storage, but also periodically sends it to the server. In case more than one person editing at once.