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'))
All options, and their default values, are:
class EditorForm(forms.Form): text = forms.CharField(widget=AceWidget( mode=None, # try for example "python" theme=None, # try for example "twilight" wordwrap=False, width="500px", height="300px", minlines=None, maxlines=None, showprintmargin=True, showinvisibles=False, usesofttabs=True, tabsize=None, fontsize=None, toolbar=True, readonly=False, showgutter=True, # To hide/show line numbers behaviours=True, # To disable auto-append of quote when quotes are entered ))
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 makemigrations app ./manage.py migrate ./manage.py runserver
Then browser to http://localhost:8000
.
- Update ACE editor to version v1.31.1.
- Update ACE editor to version v1.26.0.
- Update ACE editor to version v1.24.1.
- Update ACE editor to version v1.23.4.
- Update ACE editor to version v1.22.1.
- Update ACE editor to version v1.19.0.
- Added CSS to work with new admin in Django 4.2. Now you can use width="100%" without breaking the layout.
- Update ACE editor to version v1.15.3.
- Update ACE editor to version v1.14.0.
- Follow ACE version numbers.
- Update ACE editor to version v1.11.2.
- Update ACE editor to version v1.5.0.
- Support Grappelli inlines.
- FIX JavaScript error when using
JavaScriptCatalog
.
- New widget option
showgutters
to hide line numbers. - New widget option
behaviours
to avoid auto-insert of quotes.
- New widget option
readonly
. - Update ACE editor to version v1.4.12.
- New widget option
toolbar
. - Update ACE editor to version v1.4.8.
- New widget option
fontsize
. - Update ACE editor to version v1.4.7.
- New widget option
tabsize
. - Upgrade ACE editor to version v1.4.2.
- Update Django compatibility to
>1.11,<=2.1
- New widget options
minLines
,maxLines
,showinvisibles
,usesofttabs
. - Upgrade ACE editor to version v1.4.0.
- Updated example for Django 1.11
- PEP8 improvements
- Upgrade ACE editor to version 1.1.8
- Add support for showprintmargin
- Add support for Django 1.7 by removing deprecated imports.
- Initial release.