An open API service indexing awesome lists of open source software.

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

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).