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

Django app allowing users to set app specific preferences through the admin interface.

Results 4 django-preferences issues
Sort by recently updated
recently updated
newest added

This package did exactly what I needed, but it would be nice if it worked without `django.contrib.sites`. Almost certainly a vast majority of Django projects only have one site, and...

I'm writing some tests that use the Preferences app. In the setup function of the test class, i have this code. from preferences import preferences preferences.Test.ip = "http://192.168.1.7/" preferences.Test.save() yet...