https://github.com/fitzgen/django-wysiwyg-forms
WYSIWYG form editor/creator django app
https://github.com/fitzgen/django-wysiwyg-forms
Last synced: over 1 year ago
JSON representation
WYSIWYG form editor/creator django app
- Host: GitHub
- URL: https://github.com/fitzgen/django-wysiwyg-forms
- Owner: fitzgen
- License: mit
- Created: 2010-05-02T00:08:10.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2017-01-04T17:04:37.000Z (over 9 years ago)
- Last Synced: 2025-03-17T11:59:40.650Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 485 KB
- Stars: 25
- Watchers: 5
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django WYSIWYG Forms
## What is this?
Django WYSIWYG Forms is a Django app that allows normal users to create forms
using a What You See Is What You Get style interface (similar to Wufoo or Google
Docs) and then gives programmers access to those user created forms as
`django.forms.Form` classes and instances. After that, the world is your oyster!
## Installing
Install via pip:
pip install django-wysiwyg-forms
or from source:
git clone git://github.com/fitzgen/django-wysiwyg-forms.git
cd django-wysiwyg-forms/
python setup.py install
Then, add `"wysiwyg_forms"` to `INSTALLED_APPS` in `settings.py`.
Migrate the database:
./manage.py migrate
Make sure that `django.contrib.staticfiles` is installed
properly. [See here for instructions](https://docs.djangoproject.com/en/dev/howto/static-files/).
Collect the static files:
./manage.py collectstatic
Include the urls:
urlpatterns = patterns("",
# ...
(r"^wysiwyg_forms/", include("wysiwyg_forms.urls")),
# ...
)
## More Documentation
[Here](./doc/README.md).