Skip to content

DeppSRL/django-widgets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published