forked from applecat/django-simple-poll
-
Notifications
You must be signed in to change notification settings - Fork 0
TiMirLAN/django-simple-poll
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Simple Django poll application
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 syncdb or python manage.py migrate poll if you using South.
4. Add this tags in your template file to show poll:
{% load poll_tags %}
{% poll %}
-----
Based on https://bitbucket.org/RafRaf/django-poll-systemAbout
Simple Django poll application
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- Python 100.0%