Skip to main content

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 %}

Credits

Original Author: Jaap Roes

Current Maintainer: Adam Taylor

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_friendly_tag_loader-1.3.2.tar.gz (10.4 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django_friendly_tag_loader-1.3.2.tar.gz.

File metadata

File hashes

Hashes for django_friendly_tag_loader-1.3.2.tar.gz
Algorithm Hash digest
SHA256 36de040ba8c408b0e6d1fa57ff89b4af1aa9806aaf1cfbaa673861737fb40f78
MD5 f846ef0c04d6aca2183fb51fab9a905f
BLAKE2b-256 d8ee118e1de58f26fe4826b44fcd56ac9f58f0f8a15864c165fe96ef6a4f8ee5

See more details on using hashes here.

File details

Details for the file django_friendly_tag_loader-1.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_friendly_tag_loader-1.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7c84ad4703b7d989388ee128da5cbe901dbc39eb14174a5a08a888be38392aa5
MD5 8f47c55176d1b0be9920b72464f9dc4d
BLAKE2b-256 30d74749854026d24d29334697e6bf9610af4d5a1aca5dfea649c84f15ad57b0

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