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'}))
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-rte-0.4.0.tar.gz.
File metadata
- Download URL: django-rte-0.4.0.tar.gz
- Upload date:
- Size: 1.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fd817c038a8ffbda54b813900aabad5ce00f24ac915cf8607e6bb6b59a03a73
|
|
| MD5 |
646e0d3a1794402da811ee7eef1d468a
|
|
| BLAKE2b-256 |
89e91eedf360f693859514ae0e56514ca9063eeda90e32851c1f1baa1e40a9ea
|