Skip to main content

Django settings resolver.

Project description

https://travis-ci.org/jespino/django-sr.png?branch=master https://coveralls.io/repos/jespino/django-sr/badge.png?branch=master https://pypip.in/v/django-sr/badge.png https://pypip.in/d/django-sr/badge.png

The siple way to resolve some data defined on settings. You can easy to use it on any part of you python code on your django project.

Also, this exposeses templatetags for django template engine and jinja template enjine for easy use it from templates. See examples to better understand how it works.

How to install

You can also install it with: pip install django-sr

Configuration

Add the sr app to your installed apps and define your settings SR variable as a dictionary.

Example:

# settings.py
SR = {
    'footer': {
        'phone': '+34 987654321',
        'address': 'Foo Bar Street, 32',
        'other_text': 'Text with parameters {0}',
    },
    'header': {
        'logo': {
            'alt': 'Logo image',
            'src': 'http://foo.bar/images/logo.png'
        }
    }
}

Usage examples

Use it directly from your code.

from sr import sr
logo_alt = sr('header.logo.alt')  # Logo image
other_text = sr('footer.other_text', 'parameter')  # Text with parameters parameter

Also, from django templates with the sr template tag:

{% load sr %}
<span class="phone">{% sr 'footer.phone' %}</span>
<span class="other">{% sr 'footer.other_text' 'text' %}</span>

And you can use it from jinja templates using the sr global function:

<span class="phone">{% sr('footer.phone') %}</span>
<span class="other">{% sr('footer.other_text', 'text') %}</span>

For jinja template integration for django you need use django-jinja

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-sr-0.0.3.tar.gz (3.6 kB view details)

Uploaded Source

File details

Details for the file django-sr-0.0.3.tar.gz.

File metadata

  • Download URL: django-sr-0.0.3.tar.gz
  • Upload date:
  • Size: 3.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-sr-0.0.3.tar.gz
Algorithm Hash digest
SHA256 6227fdfb437494448ff4a486356204e99a57d3d63858b8e9242c25cacca92559
MD5 87590af3e5b4afa9a723f9ff5579fad0
BLAKE2b-256 e272606a8fa65ca9f1c1421c5306cc7f68aecd29bc0380869cc624d566d76a91

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page