Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
# Django Widgets
## Quick start
1. Add "widgets" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = (
...
'widgets',
)
2. Include the polls URLconf in your project urls.py like this::
url(r'^widgets/', include('widgets.urls')),
3. Register your widgets to your settings::
WIDGETS = (
'myapp.widgets.MyWidget',
...
)
4. Start the development server and visit http://127.0.0.1:8000/widgets/
5. Customize your widget and embed it.
# Tests
./runtests.sh widgets.tests