Hi Andrea, In short, you don't - at least, not out of the box. That's not what Django's admin interface is for. Django's admin is a quick-and-dirty CRUD interface you can throw over some models, with some customisation hooks that means it has a lifespan beyond initial bootstrapping.
It isn't a sysadmin tool, or a dbadmin tool, or anything like that. If you want to backup and/or restore your database, you need to use a database backup tool. There are a range of options, depending on the database you're using; but I'm not aware of any particularly common options that are integrated with Django's admin. Yours, Russ Magee %-) On Mon, Dec 8, 2014 at 9:22 PM, Andrea Zakowicz <[email protected]> wrote: > Hi I wonder if you are aware of how to backup / restoration database and > audit from the django admin. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/6a51def8-3c9c-4d11-92a8-908257478a1f%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/6a51def8-3c9c-4d11-92a8-908257478a1f%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJxq84_PmjmFJ9Rmh4Ew0yPz_gF-aabTXQjGOLMGuqAwP%3DnFAA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

