/django-pools

A simple Django app with unit tests and customized admin panel to conduct Web-based polls, built while learning/following the official documentation.

Primary LanguagePython

Django Polls Project

DeepSource

Polls is a simple Django app to conduct Web-based polls. For each question, visitors can choose between a fixed number of answers.

It also contain django-polls directory which is packaged and can be installed via pip to use the polls on your project.

Installation and Run

  • Create Virtual environment
    • python -m venv env
    • pip install -r requirements.txt
  • Run the application
    • cd django-poll
    • python manage.py runserver

It also contain unit tests and customized admin panel, built while learning django from official docs.