Reusable app for Django introducing site preferences system
Project description
http://github.com/idlesign/django-siteprefs
What’s that
django-siteprefs allows Django applications settings to come alive
Let’s suppose you have your pretty settings.py file with you application:
from django.conf import settings
MY_OPTION_1 = getattr(settings, 'MY_APP_MY_OPTION_1', True)
MY_OPTION_2 = getattr(settings, 'MY_APP_MY_OPTION_2', 'Some value')
MY_OPTION_42 = getattr(settings, 'MY_APP_MY_OPTION_42', 42)
Now you want these options to be exposed to Django Admin interface. Just add the following:
# To be sure our app is still functional without django-siteprefs.
if 'siteprefs' in settings.INSTALLED_APPS:
from siteprefs.toolbox import preferences
with preferences() as prefs:
# And that's how we expose our options to Admin.
prefs(MY_OPTION_1, MY_OPTION_2, MY_OPTION_42)
After that you can view your settings in Django Admin.
If you want those settings to be editable through the Admin - siteprefs allows that too, and even more.
Read the docs ;)
Documentation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-siteprefs-1.0.0.tar.gz
(22.1 kB
view hashes)
Built Distribution
Close
Hashes for django_siteprefs-1.0.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c41c5efc32de222503f4113595d934cc7ebe9d257cf234faeacb8159b2fdb51d |
|
MD5 | 0081e266ea087b2b7de33d70e4e90c58 |
|
BLAKE2b-256 | 540757bbb8528b9e62f190f6349f46aba790c53cc337e945f54db8322526e90e |