django-advanced-template-tags

Provides some useful template tags that are missing in the Django builtins.


License
MIT
Install
pip install django-advanced-template-tags==0.1

Documentation

Advanced Template Tags

Provides some useful template tags that are missing in the Django builtins.

Quick start

  1. Add "advanced_template_tags" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [

    ... 'advanced_template_tags',

    ]

  2. In your template, load the library:

    {% load advanced_template_tags %}