Skip to content

Latest commit

 

History

11 Commits

Folders and files

NameName
Last commit message
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

About

A simple Django app to produce embeddable contents.

Resources

Contributing

Stars

1 star

Watchers

12 watching

Forks

Releases

Packages

Contributors

Languages