Skip to content

Latest commit

 

History

History
64 lines (48 loc) · 2.76 KB

README.md

File metadata and controls

64 lines (48 loc) · 2.76 KB

Django-Poll-App

Django poll app is a full featured polling app. You have to register in this app to show the polls and to vote. If you already voted you can not vote again. Only the owner of a poll can add poll , edit poll, update poll, delete poll , add choice, update choice, delete choice and end a poll. If a poll is ended it can not be voted. Ended poll only shows user the final result of the poll. There is a search option for polls. Also user can filter polls by name, publish date, and by number of voted. Pagination will work even after applying filter.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

You need git and python>=3.5.

Install listed dependencies in requirements.txt

To migrate the database open terminal in project directory and type

python manage.py migrate

To start with some dummy data load the fixtures:

There are fixtures for users and polls you can load if you want to start with some data

Project snapshot

Home page

Login Page

Registration Page

Poll List Page

Poll Add Page

Polling page

Poll Result Page

Poll Edit Page

Choice Update Delete Page