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
DATABASES is a dict. So you can manipulate how a dictionary:
DATABASES
import django.conf as conf conf.settings.DATABASES['default']['NAME'] = 'novo_banco'