A django-cms plugin with a better placeholder tag.
Project description
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
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 cmsplugin-template-placeholder-0.1.tar.gz
.
File metadata
- Download URL: cmsplugin-template-placeholder-0.1.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91838b7299076ea41bc33049cf71b9c3fa6c4ab9edd54d18ce90ab7cbb6371d5 |
|
MD5 | 416d8a0353f6b5bbd4a78228b7c7d1c5 |
|
BLAKE2b-256 | 3b2b88f352e95539b58474390229ad493cd29382864180b29f22ac42e6d2aff1 |