A simple plaintext plugin for django CMS.
Project description
A simple plaintext plugin for django CMS.
Requirements
Django >= 1.5
django-cms >= 3.0
Quickstart
Installation:
$ pip install cmsplugin-plain-text
Configure installed apps in your settings.py
INSTALLED_APPS = ( ..., 'cmsplugin_plain_text', )
Migrate your database
$ ./manage.py migrate cmsplugin_plain_text
If you are using Django < 1.7 in conjunction with South, make sure your SOUTH_MIGRATION_MODULES setting contains this line.:
SOUTH_MIGRATION_MODULES = { ..., 'cmsplugin_plain_text': 'cmsplugin_plain_text.south_migrations', }
Running Tests
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install -r requirements-test.txt (myenv) $ python runtests.py
Credits
Tools used in rendering this package:
History
0.1.2 (2016-07-14)
Optimize Python 3 support
0.1.1 (2016-02-11)
Updated docs
Added tests
Optimized plugin name
0.1.0 (2016-01-26)
First release on PyPI.