A simple PLR helper.
-
Add "plrutils" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = ( ... 'plrutils', )
-
Include the plrutils URLconf in your project urls.py like this::
url(r'', include(plrutils.urls.urlpatterns)),
-
Run
python manage.py syncdb
to create the models. -
Start the development server and visit http://127.0.0.1:8000/admin/ to create the database and the functions (you'll need the Admin app enabled).
-
Enjoy.