"cms.plugins.snippet" (from djangocms) clone to extend it with some facilities
Project description
This is a “cms.plugins.snippet” (from djangocms) clone to extend it with some facilities
Original code is from the original DjangoCMS plugin.
Changes from original code
This clone try to change as few orignal code as possible, actually the differences are :
Adding a template tag to directly use snippet fragments in the templates, not only from CMS pages;
Changing Snippet model to bind djangocms_text_ckeditor.fields.HTMLField on the field html;
Requires
DjangoCMS version >= 2.3 (tested with 2.3.6) (should not work with >= 3.x);
djangocms_text_ckeditor version 1.0.10;
Install
The only thing needed is to replace the cms.plugins.snippet in your DjangoCMS settings, like this :
INSTALLED_APPS = ( 'cms', # Plugins ... #'cms.plugins.snippet', 'snippet', # the snippet plugin clone ... )
Because the code is cloned from the original plugin with just a few changes, all CMS stuff should work as with the original plugin, you should even add it in an existing install without loss in database and without any syncdb.
Usage
Snippet html field
You don’t need to do nothing, the CKEditor should automatically take in place of the textarea input.