"cms.plugins.snippet" (from djangocms) cloned to extend it with some facilities
Project description
This is a “cms.plugins.snippet” (from djangocms) cloned 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;
Add usage of djangocodemirror for the HTML editor;
Requires
DjangoCMS version >= 2.3 (tested with 2.3.6) (should not work with >= 3.x);
djangocodemirror 0.9.x;
In the admin, the HTML content will be edited with the djangocodemirror editor.
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 'djangocodemirror', # the editor ... )
Then add :
CODEMIRROR_SETTINGS = { 'cms_snippet': { 'mode': {'name': "jinja2", 'htmlMode': True}, 'lineWrapping': True, 'lineNumbers': True, 'search_enabled': True, 'embed_settings': True, 'add_jquery': True, 'lib_buttons_path': 'djangocodemirror/snippet_buttons.js', }, }
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
Template tags
Use the template tags in your templates :
{% load snippet_tags %} {% snippet_fragment [Snippet ID or instance] %}
Like this :
{% load snippet_tags %} {% snippet_fragment 42 %}
The required argument is for the Snippet ID or a Snippet instance if you want.
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 emencia-cms-snippet-2.3.6.3.4.tar.gz
.
File metadata
- Download URL: emencia-cms-snippet-2.3.6.3.4.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0982b23c54a3c394259e035ac28ba799f3cfc2dce8e89b435e1651b0bafc3c9 |
|
MD5 | 6d986b54e084cbdf73821d22fdb6bbd0 |
|
BLAKE2b-256 | fb03495c45239b0323d17db39820f866118f2fc907fed75ee814143d50e939a9 |