Using Django Flatpages in production: how to archive changes for recovery purposes -
I am using Django Flatpages in a production site. The best way to ensure this is to make sure that an administrator makes a mistake in editing the file, then the old version of the page can be retrieved. We have backups and so on, but to recover it again A bit more complex (i.e. sysadmin is included, not website editor).
First of all, is this a package?
If not, I have come up with two options:
-
Some external scripts that track the DB, and see the changes in the Flatpages content However, save a copy of the latest content in another table such as FlatpagesHistory. Then website editor can use only Admin service to recover old copies of pages from FlatpagesHistory
Thanks.
Where all live changes are taking place then load it on the output
try deJengo-reversion
Comments
Post a Comment