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.
Change log
v1.0.1
Add support for Django 1.7 by removing deprecated imports.
v1.0.0
Initial release.
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-1.0.1.tar.gz
(1.3 MB
view details)
File details
Details for the file django-ace-1.0.1.tar.gz
.
File metadata
- Download URL: django-ace-1.0.1.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3808734daa9c89d709175c86e57bc37edd18fe610b53feb1d5943d251bb46ba |
|
MD5 | 35986bb86379f4a750bae67bfde56321 |
|
BLAKE2b-256 | d7ef203312efe2a664499be30348407403fe47feb34582b3317b3161298a0d12 |