https://github.com/retailify/calixos-poll
A simple Poll plugin for django CMS
https://github.com/retailify/calixos-poll
Last synced: about 1 year ago
JSON representation
A simple Poll plugin for django CMS
- Host: GitHub
- URL: https://github.com/retailify/calixos-poll
- Owner: retailify
- Created: 2016-07-29T12:05:53.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-29T12:52:57.000Z (almost 10 years ago)
- Last Synced: 2025-02-13T15:24:40.754Z (over 1 year ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Installation
------------
Install latest from github:
```
pip install -e git+https://github.com/retailify/calixos-poll.git#egg=calixos-poll
```
Usage
-----
1. Add 'poll' application in the ``INSTALLED_APPS`` settings:
```
INSTALLED_APPS = (
# ...
'poll',
)
```
2. Add the poll's url to your urls.py.
```
urlpatterns = patterns('',
# ...
url(r'^poll/', include('poll.urls')),
)
```
3. Run python manage.py migrate poll.
5. Add the poll to your page via django CMS
-----
Based on https://github.com/applecat/django-simple-poll