Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/makukha/cmsplugin-raw-html

Django CMS plugins to insert raw HTML as top-level or nested plugin.
https://github.com/makukha/cmsplugin-raw-html

Last synced: 27 days ago
JSON representation

Django CMS plugins to insert raw HTML as top-level or nested plugin.

Awesome Lists containing this project

README

        

cmsplugin-raw-html
====================

Django CMS plugins to insert raw HTML as top-level or nested plugin.

This package adds a plugin named "HTML" that can be inserted as a top level plugin directly into the page structure,
or as a nested plugin into the Text plugin.

Requirements
------------

Tested with
* Python 3.4.5
* Django 1.7.7
* django-cms 3.1.0rc1

Installation
------------

Install package:

pip install https://github.com/makukha/cmsplugin-raw-html/archive/master.zip

Add app to `settings.py`:

INSTALLED_APPS = (
...
'cmsplugin_raw_html',
...
)

and run migration (Django 1.7):

python manage.py migrate cmsplugin_raw_html

Credits
-------

The idea was inspired by https://github.com/mrj0/cmsplugin-html.