Stacks: Re-usable content blocks in django CMS.
Project description
Stacks: re-usable content blocks
To put it in terms of django CMS: This is re-usable Placeholder. It can used in any template as a named entity:
{% load stack_tags %} {% stack 'my_footer' %}
This will create a Stack with the my_footer identifier. It can be edited in admin.
Stacks can also be used inside regular placeholders. Suppose you have some content that you want to re-use in multiple places: Make a stack and insert that stack with the StackLinkPlugin wherever you need it.
Stacks is multilingual (using the multilinguality of cms-plugins. So make sure your stack is translated into the language of the page you place it on.
There is currently no validation in place to prevent infinite loops… so please don’t put a StackLinkPlugin inside a Stack with a link to itself.
Requirements
python>=2.6
Django>=1.3
django-cms>=2.3
Installation and Configuration
pip install djangocms-stacks
in settings:
INSTALLED_APPS = ( [...] 'stacks', 'django_select2', [...] )
add the Django-Select2 urls:
urlpatterns = patterns('', [...] url(r'^select2/', include('django_select2.urls')), [...] )
create the database tables:
python manage.py migrate stacks
Idea based on https://github.com/divio/django-contentblock .
history
0.2.3 (2014-03-15)
Adds setting to disable stacks widget
0.2.2 (2012-12-10)
Adds Permission checks for ajax requests
0.2.1 (2012-12-10)
Adds Django-Select2 as selection field
0.2 (2012-12-10)
Initial release. Basic multilingual stacks.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.