Skip to main content

Native, Pythonic Templatetags for Django

Project description

Authors:

Justin Quick <justquick@gmail.com>

Version:
0.5
pip install django-native-tags==0.5

Django Native Tags is a way of making the creation of template tags stupidly simple. Tags are “native” because there is a much closer relationship between the tag in the template and a Python function behind the scenes. The app abstracts the work needed to parse out the templatetag syntax into a useable form for a Python function. For example:

Define an arbitrary function in your templatetags:

def add(x, y):
   return x + y
add.function = True

Use the function in your template:

{% add 1000 100 as num %}
{{ num|intcomma }}

Which outputs:

1,100

Other features of Native Tags:

  • Keyword argument parsing

  • Quoted strings parsed correctly

  • Add templatetags to Django’s builtins (no {% load %} required)

  • Auto resolve of template variables

  • Universal and per-tag caching

  • Straightforward template tag unittesting

  • Error tolerant by letting you specify a fallback return value

The real power of the module comes in the contrib add ons which has tons of tags for various uses including comparisons, regex operations, math operations, and much more. By default it is a functional replacement to James Bennett’s django-template-utils right out of the box

For full documentation, checkout the fancy Sphinx doc

Email me with any questions/concerns/issues/hate mail:

justquick [@] the gmails .com

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-native-tags-0.5.1.tar.gz (24.3 kB view details)

Uploaded Source

File details

Details for the file django-native-tags-0.5.1.tar.gz.

File metadata

File hashes

Hashes for django-native-tags-0.5.1.tar.gz
Algorithm Hash digest
SHA256 0d105ebd9caf66adc956543d2f0214460b92658530197cf2012292b690200b42
MD5 6fe9abdf188336f6f9fe637582b47e82
BLAKE2b-256 90561c7fe077fc08cbd50623d0b955c1345597679cbb552320b86f4b9c3350ec

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