javascript-settings is a Django application that provides a way of passing values backend from Django applications to JavaScript in templates.
Installation
Package
javascript-settings can be installed as a normal Python package.
Example instalation for pip:
$ pip install django-javascript-settings
Example instalation from file:
$ pip install django-javascript-settings-1.1.tar.gz
Configuration
settings.py
Add javascript-settings to INSTALLED_APPS:
INSTALLED_APPS = (
...
'javascript_settings',
...
)
Add javascript-settings.finders to STATICFILES_FINDERS:
STATICFILES_FINDERS = (
...
'javascript_settings.finders.JavascriptSettingsFinder',
...
)
template
You can use one of following ways to pass gathered data to template:
Option 1: Import
Add javascript-settings.js to script imports:
<script type="text/javascript" src="{{ STATIC_URL }}javascript-settings.js"></script>
Option 2: Template tag
Add javascript-settings tag to your main template:
{% load javascript_settings_tags %}
<script type="text/javascript">{% javascript_settings %}</script>
Usage
Configuration is defined by adding javascript_settings function to urls.py of app. javascript_settings should take no arguments and return json-serializable object. Serialized object is then avaliable in Javascript as configuration['app_name'].
If you want to place javascript_settings in different location, then you can define JAVASCRIPT_SETTINGS_SCAN_MODULES as a dictionary of 'app_name': 'module_location'.
Example
Template:
<script type="text/javascript" src="{{ STATIC_URL }}javascript-settings.js"></script>
urls.py in an app “home”:
def javascript_settings():
return {
'page_title': 'Home',
'page_version': '1.9.20',
'css': {
'white': './css/white.css',
'black': './css/black.css',
'print': './css/print.css',
},
'default_css': 'white',
}
Result in file javascript-settings.js:
var configuration = {'home': {'page_title': 'Home', 'page_version': '1.9.20', 'css': {'white': './css/white.css', 'black': './css/black.css', 'print': './css/print.css'}, 'default_css': 'white'}};
Release files for django-javascript-settings 1.1.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-javascript-settings-1.1.2.tar.gz | 4.8 kB | Details |
Release files / django-javascript-settings-1.1.2.tar.gz
| Download URL | django-javascript-settings-1.1.2.tar.gz |
|---|---|
| Size | 4.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
33c0ae7ce0cf405f81d29e80924b37705942ff68e344a24b930d8927234d390e
|
|
BLAKE2b-256 checksum How to use checksums |
19d8db8c74f640ce278cc16854b06f8c52801cd4552f1c502110bb28123423b2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |