An easy way to use settings variable in django template.
Project description
Django Lazy Settings
========================
An easy way to use settings variable in django template.
How to install
--------------
You can also install it with: ``pip install django-lazy-settings``
Configuration
-------------
Add the sr app to your installed apps and define your settings :code:`SR` variable as a dictionary.
Example:
```python
# settings.py
INSTALLED_APPS = [
...
'lazy_setting'
]
```
Usage examples
--------------
Use it from your template code with ``lz`` template tag:
```django
{% load lazy_setting %}
<span class="message">{% lz 'SETTING_KEY' %}</span>
<span class="other">{% lz 'SECRET_KEY' %}</span>
```
========================
An easy way to use settings variable in django template.
How to install
--------------
You can also install it with: ``pip install django-lazy-settings``
Configuration
-------------
Add the sr app to your installed apps and define your settings :code:`SR` variable as a dictionary.
Example:
```python
# settings.py
INSTALLED_APPS = [
...
'lazy_setting'
]
```
Usage examples
--------------
Use it from your template code with ``lz`` template tag:
```django
{% load lazy_setting %}
<span class="message">{% lz 'SETTING_KEY' %}</span>
<span class="other">{% lz 'SECRET_KEY' %}</span>
```
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-lazy-settings-1.0.zip
(3.2 kB
view details)
File details
Details for the file django-lazy-settings-1.0.zip.
File metadata
- Download URL: django-lazy-settings-1.0.zip
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d977e47bda93e4d7b59e7fccd47747b5c16b6ea531947240339a45966df056f
|
|
| MD5 |
1a644297640e6bc6e0ec8b01256b1b15
|
|
| BLAKE2b-256 |
a20d089b57251e283d82553b8282d3447d6ad1364dce7d799fcbd3bca01f7394
|