Skip to main content

"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;

  • Add a slug field;

Requires

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 slug or instance] %}

Like this :

{% load snippet_tags %}
{% snippet_fragment 42 %}

Or with the slug :

{% load snippet_tags %}
{% snippet_fragment 'my-snippet' %}

The first argument is required, you can use either

  • The Snippet ID;

  • The Snippet slug;

  • The Snippet instance.

Use as a template block with fallback :

{% snippet_fragment 'my-snippet' or %}
    ... clumsy safe ...
{% endsnippet_fragment %}

In case there is no snippet instance/id/slug, fallback template will be rendered.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

emencia-cms-snippet-2.4.2.tar.gz (10.9 kB view details)

Uploaded Source

File details

Details for the file emencia-cms-snippet-2.4.2.tar.gz.

File metadata

File hashes

Hashes for emencia-cms-snippet-2.4.2.tar.gz
Algorithm Hash digest
SHA256 b6d69c335f0914b17357af7ac937351f8ab744de5568521d25db511e66cf8283
MD5 526bdc308f566752e08238b4e2dc36ca
BLAKE2b-256 8bc96c53af23a21cb942a7ac627b66c54fa09b1d3ba2ff797ead4d3b074864f5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page