views:

29

answers:

1

I asked a similar question here. I didn't get many useful answers. May be the question was confusing. So to make it simple, I have different databases used by different users. I want to create a separated admin interface for each of them so that the users will see and modify only the tables related to them. For various reasons multi-db option is not working for me.

Thanks in advance.

A: 

django has a feature which allows restriction of tables to specific users. i suggest you look into django.contrib.auth and it's inbuilt permissions. If you require the ability to completely block access to specific admin sections, you can override the behaviour of the admin site in your admin.py

Thomas