Trumbowyg (WYSIWYG editor) integration app for Django admin.
Project description
Introduction
django-fs-trumbowyg is the Django-related reusable app for integrating Trumbowyg WYSIWYG editor http://alex-d.github.io/Trumbowyg/.
Installation
Install django-fs-trumbowyg using pip:
$ pip install django-fs-trumbowyg
Add 'trumbowyg' to your INSTALLED_APPS setting:
INSTALLED_APPS = ( ... 'trumbowyg', ... )
Update your urls.py:
url(r'^trumbowyg/', include('trumbowyg.urls'))
Usage
Use TrumbowygWidget in your forms:
from django.forms import ModelForm from django.contrib.admin import ModelAdmin from trumbowyg.widgets import TrumbowygWidget from your_app.models import YourModel class YourModelAdminForm(ModelForm): class Meta: model = YourModel widgets = { 'text': TrumbowygWidget(), } class YourModelAdmin(admin.ModelAdmin): form = YourModelAdminForm admin.site.register(YourModel, YourModelAdmin)
Credits
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-fs-trumbowyg-0.1.4.tar.gz
(63.6 kB
view details)
File details
Details for the file django-fs-trumbowyg-0.1.4.tar.gz
.
File metadata
- Download URL: django-fs-trumbowyg-0.1.4.tar.gz
- Upload date:
- Size: 63.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e39edc169d053f23d237f3cbfa691899878be8ce44dd7195e2f91470c79b886 |
|
MD5 | 961a3f29901e884074d6a32b011125e6 |
|
BLAKE2b-256 | 6828b9c86ba1c06ce28baf89bf3098cae907429fdef038b04dc691543d639559 |