Simple poll plugin for Django CMS.
If you want to use the poll plugin into your project, just follow this procedure:
Open the settings.py file and add
cmsplugin_poll
to theINSTALLED_APPS
variableRun the following command:
$ ./manage.py migrate
Open the urls.py file and add the following to
urlpatterns
:# previous urls # url(r'^poll/', include('cmsplugin_poll.urls')),
That's all for now.