Simple app to add configuration options to a Django project.
1 Install using pip:
$ pip install django-simple-options
2 Add "options" to your INSTALLED_APPS settings like this:
INSTALLED_APPS += ('options',)
Use SIMPLE_OPTIONS_CONFIGURATION_DEFAULT to set the default options:
SIMPLE_OPTIONS_CONFIGURATION_DEFAULT = {
"sold_out": {
"value": 0,
"type": INT,
"public_name": "Sets tickets as sold out"
},
}