├── .gitignore ├── LICENSE ├── README.md ├── accounts ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── accounts │ │ ├── login.html │ │ └── register.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── pollme ├── __init__.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── polls ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190117_0119.py │ ├── 0003_auto_20190117_2358.py │ ├── 0004_poll_owner.py │ ├── 0005_vote.py │ ├── 0006_poll_active.py │ └── __init__.py ├── models.py ├── templates │ └── polls │ │ ├── add_choice.html │ │ ├── add_poll.html │ │ ├── endpoll.html │ │ ├── poll_detail.html │ │ ├── poll_edit.html │ │ ├── poll_result.html │ │ └── polls_list.html ├── tests.py ├── urls.py └── views.py ├── seeder.py ├── static ├── css │ └── home_style.css └── img │ └── background.jpg └── templates ├── base.html ├── home.html └── includes └── navbar.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/README.md -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/accounts/templates/accounts/login.html -------------------------------------------------------------------------------- /accounts/templates/accounts/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/accounts/templates/accounts/register.html -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/accounts/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/manage.py -------------------------------------------------------------------------------- /pollme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pollme/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/pollme/settings.py -------------------------------------------------------------------------------- /pollme/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/pollme/urls.py -------------------------------------------------------------------------------- /pollme/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/pollme/views.py -------------------------------------------------------------------------------- /pollme/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/pollme/wsgi.py -------------------------------------------------------------------------------- /polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/admin.py -------------------------------------------------------------------------------- /polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/apps.py -------------------------------------------------------------------------------- /polls/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/forms.py -------------------------------------------------------------------------------- /polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /polls/migrations/0002_auto_20190117_0119.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/migrations/0002_auto_20190117_0119.py -------------------------------------------------------------------------------- /polls/migrations/0003_auto_20190117_2358.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/migrations/0003_auto_20190117_2358.py -------------------------------------------------------------------------------- /polls/migrations/0004_poll_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/migrations/0004_poll_owner.py -------------------------------------------------------------------------------- /polls/migrations/0005_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/migrations/0005_vote.py -------------------------------------------------------------------------------- /polls/migrations/0006_poll_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/migrations/0006_poll_active.py -------------------------------------------------------------------------------- /polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/models.py -------------------------------------------------------------------------------- /polls/templates/polls/add_choice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/templates/polls/add_choice.html -------------------------------------------------------------------------------- /polls/templates/polls/add_poll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/templates/polls/add_poll.html -------------------------------------------------------------------------------- /polls/templates/polls/endpoll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/templates/polls/endpoll.html -------------------------------------------------------------------------------- /polls/templates/polls/poll_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/templates/polls/poll_detail.html -------------------------------------------------------------------------------- /polls/templates/polls/poll_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/templates/polls/poll_edit.html -------------------------------------------------------------------------------- /polls/templates/polls/poll_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/templates/polls/poll_result.html -------------------------------------------------------------------------------- /polls/templates/polls/polls_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/templates/polls/polls_list.html -------------------------------------------------------------------------------- /polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/tests.py -------------------------------------------------------------------------------- /polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/urls.py -------------------------------------------------------------------------------- /polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/polls/views.py -------------------------------------------------------------------------------- /seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/seeder.py -------------------------------------------------------------------------------- /static/css/home_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/static/css/home_style.css -------------------------------------------------------------------------------- /static/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/static/img/background.jpg -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/Voter/HEAD/templates/includes/navbar.html --------------------------------------------------------------------------------