A django application that contains a widget to render a form field as beautiful Imperavi WYSIWYG editor http://redactorjs.com/
Project description
Django admin WYSIWYG Imperavi editor integration.
Installation
Install or add django-imperavi to your python path.
Add imperavi to your INSTALLED_APPS setting.
Add imperavi URL include to your project’s urls.py file:
url(r'^imperavi/', include('imperavi.urls')),
Usage
The quickest way to add rich text editing capabilities to your admin is to use the included ImperaviAdmin class. For example:
from models import Article from imperavi.admin import ImperaviAdmin class ArticleAdmin(ImperaviAdmin): pass admin.site.register(Article, ArticleAdmin)
More information will be soon…
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-imperavi-0.1.7.tar.gz
(94.2 kB
view hashes)