django-ueditor-plugin

a backend plugin for ueditor


Keywords
django-ueditor-plugin, django, ueditor
License
MIT
Install
pip install django-ueditor-plugin==0.13

Documentation

#django-ueditor-plugin

what?

the plugin is a ueditor django backend ware, just add it to your django project, then you can use ueditor full featured, the official backend is just for demo usage so i create this ware to my own productive usage.

how?

pip install django-ueditor-plugin or add the ware in your requirements.txt , then add the plugin to your settings.py

INSTALLED_APPS = (
...
'ueditor',
...
)

and urls.py

    urlpatterns += url(r'^ueditor/', include('ueditor.urls')),

then you should migrate the database

for south : python manage.py migrate ueditor
for django 1.7+ : python manage.py migrate ueditor
or python manage.py syncdb --all

at last, you should use /ueditor/controller/ to your ueditor server url.

at last

you can do everything about my bad work, i know no one use it except myself.