django-options icon indicating copy to clipboard operation
django-options copied to clipboard

"Value" dissapear in Admin Interface

Open mengzhuo opened this issue 12 years ago • 1 comments

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 2013-03-15 15:48:30

I don't see any static files missing in th Chrome Browser

mengzhuo avatar Mar 15 '13 07:03 mengzhuo

You'll need to add OPTION_VALUE_EDITABLE=True in your settings.py

theskumar avatar Oct 19 '15 04:10 theskumar