=== Polls ===
Polls is a Django app to conduct web-based polls. for each question, visitors can choose between a fixed number of answers
detailed Documentation in the "docs" directory
- Add "polls" to your INSTALLED_APPS setting like this::
- INSTALLED_APPS=[
..., "polls",
]
- Include the polls URLconf in your project urls.py like this::
path("polls/", Include("polls.urls")),
Run'' python manage.py migrate'' to create polls models
Start development server visit http:/127.0.01:8000/admin/ to create polls (you'll need admin app enabled)
visit http:/127.0.01:8000/polls/to participate in the polls