I\'d like to expose some (app-specific) settings to the admin interface, so users can change them comfortably and also not have to restart Django.
How should I go ab
You can use recomended .configure() method of settings module:
.configure()
settings
from django.conf import settings settings.configure(DEBUG=True)
settings module has additional handy features. Check docs.