Module allowing dynamically to create and further on to edit via django-admin settings
Project description
It often happens that we need to be able dynamically to create/edit some settings and site variables, for example site title, logo and counter code.
stored-settings module is tailored specifically for these purposes allowing dynamically to create and further on to edit via django-admin records of the following types:
Char
Text
HTML text
Boolean
Image
Requirements
Django stored-settings requires Django 1.3 or later and Pillow. Also has TinyMCE integration.
Getting It
You can get Django stored-settings by using pip or easy_install:
$ pip install django-stored-settings or $ easy_install django-stored-settings
If you want to install it from source, grab the git repository from GitHub and run setup.py:
$ git clone git://github.com/zvadim/django-stored-settings.git $ cd stored_settings $ python setup.py install
Installing It
To enable stored-settings in your project you need to add it to INSTALLED_APPS in your projects settings.py file:
INSTALLED_APPS = (
...
'stored_settings',
)
And also add new content processor
TEMPLATES = [{
...
OPTIONS': {
'stored_settings.context_processors.stored_settings',
...
},
}]
Last step is db migration
$ python manage.py migrate
Using It
in template {{ stored_settings.my_key }}
TinyMCE
For HTML fields TinyMCE can be applied. To enable TinyMCE support in stored-settings you need to add to settings.py the following:
STORED_SETTINGS_TINYMCE_ENABLE = True
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
File details
Details for the file django-stored-settings-0.2.1.tar.gz
.
File metadata
- Download URL: django-stored-settings-0.2.1.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 523dc3bb055f0d1044ad7e90df45ba0c03c45153dfcde50072d6835599c46b3d |
|
MD5 | 321fc07107bd8f1c233c9e8a09c85516 |
|
BLAKE2b-256 | fa392b7d50f3e44d0727255e57ef9cdc8980c0e436d72bbb94fc2631a84db459 |