Home > Back-end >  Save django summer note as typing
Save django summer note as typing

Time:01-04

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?

CodePudding user response:

I was able to impliment 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 editting at once.

  • Related