Want to optionally use a template tag library? Use this!
Project description
Use templatetag libraries in Django templates to optionally support features.
This app provides three template tags {% friendly_load %}, {% if_has_tag %} and {% ifnot_has_tag %}.
Used together you can built templates that have optional support for certain template tags. You can use them if they are available and do something else if they are not.
Installation
Add friendlytagloader to INSTALLED_APPS
Usage
{% load friendly_loader %} in your template
Load some optional taglib {% friendly_load comments %}
Or load a specific tag {% friendly_load cycle from future %}
Conditionally use its tag:
{% if_has_tag render_comment_list %} {% render_comment_list for obj %} {% else %} Comment support is not available {% endif_has_tag %}
{% friendly_load %} takes multiple arguments, so loading multiple optional template tag libraries at once is supported:
{% friendly_load comments webdesign website_tags %}
{% if_has_tag %} and {% ifnot_has_tag %} can also handle multiple arguments.
In the case of if_has_tag this means that all given tags should be available, so this will render nothing even though now is a built-in tag:
{% if_has_tag now nonexisting_tag %} {% now 'Y' %} {% endif_has_tag %}
The ifnot_has_tag condition will trigger if any of the given tags is unavailable. For example this will render the message since, even though now is a built-in tag, nonexisting_tag is not available:
{% ifnot_has_tag now nonexisting_tag %} Some tags are unavailable. {% endifnot_has_tag %}
Changes
1.2.1 (2015-07-01)
Django 1.8 support
1.2 (2014-09-29)
Dropped support for Django < 1.4
Verified Django support up to 1.7
Added Python 3 support
Support friendly_load tag from taglib syntax
1.1 (2012-06-01)
Django 1.4 compatible
1.0 (2011-10-21)
Initial release
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
Built Distribution
Hashes for django-friendly-tag-loader-1.2.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c056e6575857ed5dc263ad9797d75ce7ec5df764ef393963ab368b29318470e1 |
|
MD5 | 354f409cd7bac86e78ce0ad32e07282b |
|
BLAKE2b-256 | 7348754cfdd58a1f4c646b9915bc9cbb1a07fd61d7e36c109a74a73123c3daea |
Hashes for django_friendly_tag_loader-1.2.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | acf35b83db576b1b573cfd4710f21cae0f6101db20e7e10ac192db24ff4ab4e9 |
|
MD5 | 16b7d2d68d274ea80608254dcb86a076 |
|
BLAKE2b-256 | 7325fec21d2f57fdfad38ca7bce674dca8fcdf82fdde190d28c3898a426110ac |