I need to program kind of configuration registry for Django-based application.
Requirements:
- Most likely
param_name
:param_value
structure - Editable via admin interface
- Has to work with syncdb. How to deal with a situation in which other apps depend on configuration model and the model itself has not been initialized yet in DB? Let's say I would like to have configurable model fields properties, i.e. the default value setting?
Any ideas or suggestions would be appreciated.