Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/makukha/cmsplugin-raw-html
- Owner: makukha
- License: mit
- Created: 2015-04-20T05:25:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-14T21:55:15.000Z (almost 9 years ago)
- Last Synced: 2023-03-01T11:10:56.235Z (over 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 3
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.0rc1Installation
------------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.