django-options
django-options copied to clipboard
"Value" dissapear in Admin Interface
my settings.py file
INSTALLED_APPS = (
'django_options',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.admin',
I can get option in the code or iptyhon console
from django_options import update_option
In [6]: update_option('UPDATE_TIME', 122)
Out[6]: True
However when I try to add an option, I can't find the "Value" as the screen-shot below

I don't see any static files missing in th Chrome Browser
You'll need to add OPTION_VALUE_EDITABLE=True in your settings.py