The title, in my opinion, is self-explanatory. Basically let’s say a user if filling out an ckeditor richtextfield like so:
#app/models.py
from django.db import models
from ckeditor.fields import RichTextField
class App_Model(models.Model):
content = RichTextField()
Now let’s say an user left the page. The content will not be saved. I want the content to be saved, whether it be cookies or to the server, so the user can come back and pickup where he left off. How would I do this, preferably in the most simplest way possible.
Thanks.