A django-cms plugin with a better placeholder tag.
Unfortunately the {% placeholer %} tag of django-cms3 is not an assignment tag. This plugin adds a {% placeholder_as %} tag to address this issue.
Additionally, we also thought that it would be cool to allowed the use of any templatetag in Placeholder fields. This is extremely useful when linking via the {% url %} tag, for example.
Installation
To get the latest stable release from PyPi
pip install cmsplugin-template-placeholder
To get the latest commit from GitHub
pip install -e git+git://github.com/bitmazk/cmsplugin-template-placeholder.git#egg=cmsplugin_template_placeholder
Add cmsplugin_template_placeholder to your INSTALLED_APPS
INSTALLED_APPS = (
...,
'cmsplugin_template_placeholder',
)
Before the new tags are available in your templates, load them by using
{% load cmsplugin_template_placeholder_tags %}
Usage
Import the tag and use it similar to the original {% placeholder %} tag:
{% load cmsplugin_template_placeholder %}
{% placeholder_as "placeholder_name" as output %}
{{ output }}
Contribute
If you want to contribute to this project, please perform the following steps
# Fork this repository
# Clone your fork
mkvirtualenv -p python2.7 cmsplugin-template-placeholder
make develop
git co -b feature_branch master
# Implement your feature and tests
git add . && git commit
git push -u origin feature_branch
# Send us a pull request for your feature branch
Release files for cmsplugin-template-placeholder 0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| cmsplugin-template-placeholder-0.1.tar.gz | 6.6 kB | Details |
Release files / cmsplugin-template-placeholder-0.1.tar.gz
| Download URL | cmsplugin-template-placeholder-0.1.tar.gz |
|---|---|
| Size | 6.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
91838b7299076ea41bc33049cf71b9c3fa6c4ab9edd54d18ce90ab7cbb6371d5
|
|
BLAKE2b-256 checksum How to use checksums |
3b2b88f352e95539b58474390229ad493cd29382864180b29f22ac42e6d2aff1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |