GithubHelp home page GithubHelp logo

django-sr's Introduction

Django Settings Resolver

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

django-sr's People

Contributors

jespino avatar

Watchers

James Cloos avatar Andrey Antukh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.