Django Site Config
This Django module provides you an API that lets you code Django applications such that those apps can segment themselves into multiple sections and have different settings for each section.
For example, say you want to use the same app under two different url paths and have different behavior (different settings) for both.
/mysite1/myapp/
/mysite2/myapp/
Also, say you want to enable or disable individual apps on those different urls, via an admin interface. Also, say you want to have a consistent way to define settings for those apps.
This module helps you to accomplish those things.
Joe Jasinski was the primary author of this module with help from other team members from Imaginary Landscape. Imaginary Landscape open sourced this project.