A smart template inclusion tag
Project description
Works like normal inclusion tag but it allows the wrapped function to specify which template to use, or to abort althogether and return.
Example:
@configurable_inclusion_tag(register)
def maybe_show_foo(context):
if not SHOULD_SHOW_FOO:
return None
return 'foo.html', context
Example:
@configurable_inclusion_tag(register)
def maybe_show_foo(context):
if not SHOULD_SHOW_FOO:
return None
return 'foo.html', context
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-configurable-inclusion-tag-0.1.1.tar.gz.
File metadata
- Download URL: django-configurable-inclusion-tag-0.1.1.tar.gz
- Upload date:
- Size: 2.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2331905caf409d224cddea045a1d8f7d4ceda3294db3538f0d609d0409aae4f2
|
|
| MD5 |
f31021a33ca5ccb29feb67cc53fdb226
|
|
| BLAKE2b-256 |
9069fe153acb9c1b0d3d82729e050636cee758ff44daf22aa3a05aeb31120be3
|