from django import forms from django_ace import AceWidget class EditorForm(forms.Form): text = forms.CharField(widget=AceWidget)
Syntax highlighting and static analysis can be enabled by specifying the language:
class EditorForm(forms.Form): text = forms.CharField(widget=AceWidget(mode='css'))
Themes are also supported:
class EditorForm(forms.Form): text = forms.CharField(widget=AceWidget(mode='css', theme='twilight'))
Additional options are:
class EditorForm(forms.Form): text = forms.CharField(widget=AceWidget(wordwrap=False, width="500px", height="300px", showprintmargin=True))
Install using pip:
pip install django_ace
Update
INSTALLED_APPS
:INSTALLED_APPS = ( # ... 'django_ace', )
There's an example project included in the source, to try it do:
cd example/ virtualenv .env . .env/bin/activate pip install -e .. ./manage.py syncdb ./manage.py runserver
Then browser to http://localhost:8000
.
- Upgrade ACE editor to version 1.1.8
- Add support for showprintmargin
- Add support for Django 1.7 by removing deprecated imports.
- Initial release.