Skip to main content

Rich text editor for Django

Project description

A rich-text-tinymce-widget with model field for Django.

Requirements

Django >= 1.3

Installation

pip install django-rte

Configuration

First include rte in your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'rte',
    ...
)

Now you can either go with the default base configuration or you can define your own. Either way you can always overwrite attributes by passing a config dict to either the model field or the widget. If you want to set a different base configuration you just need to place a new config file 'rte/tiny.config.js'.

Language is automatically detected for you, should you need to explicitly set a different language you need to do this in the field or widget config dict and not in the 'rte/tine.config.js' file.

Examples

Example model usage:

from rte import RTEField

class MyModel(models.Model):
    content = RTEField()

Example Widget usage:

from rte import TinyWidget

def MyForm(forms.Form):
    content = forms.TextField(widget=TinyWidget(config={'language': 'en'}))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-rte-0.4.0.tar.gz (1.1 MB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page