I want to use Django admin to browse and existing database but I want to be sure that me or Django are not going to do any modifications to this database.
For this reason I think I should use two database, one that is the read-only one and one that would store other django tables, one where I have read-write access.
I know how to define multiple databases in settings.py
but I don't know how to force django to use another database for specific models.