django-ace provides integration for ajax.org ACE with Django
Project description
Usage
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'))
Install
Install using pip:
pip install django_ace
Update INSTALLED_APPS:
INSTALLED_APPS = ( # ... 'django_ace', )
Example Project
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-ace-0.2.0.tar.gz
(267.5 kB
view details)
File details
Details for the file django-ace-0.2.0.tar.gz
.
File metadata
- Download URL: django-ace-0.2.0.tar.gz
- Upload date:
- Size: 267.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce1e766d51c19c2243ee92cf7e10e265615053d216bcfd62756081e1d1e00132 |
|
MD5 | 2a7db755c8a0bec82a1ee13dc844323c |
|
BLAKE2b-256 | b8098e0bb21cd2c31b5945f229fde75a50443efaeef0e2aa704e55b91ee0003c |