We are design a DJango based application to be used my multiple clients. Each client will have there own database but share the same code base.
In the past, when I've done something like this, I have configure a separate virtual host for each client.
This time we are thinking about using URL routing to select the clients database, and creating a small Django Webapp to allow an admin team to setup new clients etc.
I'd be interested to hear how others have tackled this, I have Googled quite a bit on this topic.
Steve