├── pollsite ├── home │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── 0001_initial.cpython-38.pyc │ │ └── 0001_initial.py │ ├── tests.py │ ├── apps.py │ ├── admin.py │ ├── __pycache__ │ │ ├── apps.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── views.cpython-38.pyc │ │ └── __init__.cpython-38.pyc │ ├── urls.py │ ├── models.py │ ├── views.py │ ├── homePage.yaml │ └── templates │ │ └── home │ │ ├── opensource │ │ └── index ├── poll │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── 0001_initial.cpython-38.pyc │ │ └── 0001_initial.py │ ├── apps.py │ ├── __pycache__ │ │ ├── apps.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── views.cpython-38.pyc │ │ └── __init__.cpython-38.pyc │ ├── tests.py │ ├── urls.py │ ├── admin.py │ ├── templates │ │ └── poll │ │ │ ├── results │ │ │ ├── vote │ │ │ └── index │ ├── models.py │ └── views.py ├── pollsite │ ├── __init__.py │ ├── __pycache__ │ │ ├── urls.cpython-38.pyc │ │ ├── wsgi.cpython-38.pyc │ │ ├── __init__.cpython-38.pyc │ │ └── settings.cpython-38.pyc │ ├── asgi.py │ ├── wsgi.py │ ├── urls.py │ └── settings.py ├── db.sqlite3 ├── templates │ ├── admin │ │ └── base_site.html │ └── base_layout.html ├── manage.py └── populator_script.py ├── ScreenShots ├── home_app_dir.png ├── poll_app_dir.png ├── pollsite_proj_dir.png ├── run_in_terminal.png ├── detail_file_struct.png ├── file_struct_overview.png ├── Screenshot from 2020-07-15 18-32-11.png ├── Screenshot from 2020-07-15 18-32-23.png ├── Screenshot from 2020-07-15 18-32-27.png ├── Screenshot from 2020-07-15 18-32-30.png ├── Screenshot from 2020-07-15 18-33-15.png ├── Screenshot from 2020-07-15 18-33-36.png ├── Screenshot from 2020-07-15 18-33-41.png ├── Screenshot from 2020-07-15 18-33-46.png ├── Screenshot from 2020-07-15 18-33-50.png ├── Screenshot from 2020-07-15 18-33-57.png ├── Screenshot from 2020-07-15 18-34-02.png ├── Screenshot from 2020-07-15 18-34-16.png ├── Screenshot from 2020-07-15 18-34-25.png ├── Screenshot from 2020-07-15 18-34-54.png ├── Screenshot from 2020-07-15 18-35-07.png ├── Screenshot from 2020-07-15 18-35-45.png ├── Screenshot from 2020-07-15 18-35-49.png ├── Screenshot from 2020-07-15 18-35-54.png ├── Screenshot from 2020-07-15 18-36-05.png ├── Screenshot from 2020-07-15 18-36-19.png ├── Screenshot from 2020-07-15 18-36-35.png ├── Screenshot from 2020-07-15 18-36-43.png ├── Screenshot from 2020-07-15 18-36-48.png ├── Screenshot from 2020-07-15 18-36-51.png ├── Screenshot from 2020-07-15 18-36-55.png ├── Screenshot from 2020-07-15 18-36-59.png ├── Screenshot from 2020-07-15 18-37-08.png ├── Screenshot from 2020-07-15 18-37-19.png ├── Screenshot from 2020-07-15 18-37-37.png ├── Screenshot_2020-07-15-18-46-31-065_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-46-44-381_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-46-51-856_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-46-58-717_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-47-08-234_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-47-17-773_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-47-24-862_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-47-31-306_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-47-37-522_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-47-43-767_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-47-59-693_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-48-25-475_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-48-33-555_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-48-53-709_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-49-08-944_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-49-27-536_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-49-50-589_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-50-14-125_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-50-44-057_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-50-53-415_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-51-02-783_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-51-10-692_com.android.chrome.jpg ├── Screenshot_2020-07-15-18-51-20-457_com.android.chrome.jpg └── Screenshot_2020-07-15-18-51-30-308_com.android.chrome.jpg ├── CodePreview ├── Screenshot from 2020-07-15 19-07-25.png ├── Screenshot from 2020-07-15 19-07-29.png ├── Screenshot from 2020-07-15 19-07-34.png ├── Screenshot from 2020-07-15 19-07-39.png ├── Screenshot from 2020-07-15 19-07-46.png ├── Screenshot from 2020-07-15 19-07-49.png ├── Screenshot from 2020-07-15 19-07-52.png ├── Screenshot from 2020-07-15 19-07-55.png ├── Screenshot from 2020-07-15 19-08-12.png ├── Screenshot from 2020-07-15 19-08-16.png ├── Screenshot from 2020-07-15 19-08-27.png ├── Screenshot from 2020-07-15 19-08-34.png ├── Screenshot from 2020-07-15 19-08-47.png └── Screenshot from 2020-07-15 19-09-16.png ├── requirements.txt ├── LICENSE └── README.md /pollsite/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pollsite/poll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pollsite/pollsite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pollsite/home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pollsite/poll/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pollsite/home/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /pollsite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/db.sqlite3 -------------------------------------------------------------------------------- /ScreenShots/home_app_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/home_app_dir.png -------------------------------------------------------------------------------- /ScreenShots/poll_app_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/poll_app_dir.png -------------------------------------------------------------------------------- /ScreenShots/pollsite_proj_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/pollsite_proj_dir.png -------------------------------------------------------------------------------- /ScreenShots/run_in_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/run_in_terminal.png -------------------------------------------------------------------------------- /pollsite/home/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class HomeConfig(AppConfig): 5 | name = 'home' 6 | -------------------------------------------------------------------------------- /pollsite/poll/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PollConfig(AppConfig): 5 | name = 'poll' 6 | -------------------------------------------------------------------------------- /ScreenShots/detail_file_struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/detail_file_struct.png -------------------------------------------------------------------------------- /ScreenShots/file_struct_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/file_struct_overview.png -------------------------------------------------------------------------------- /pollsite/home/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import TeamMember 3 | 4 | admin.site.register(TeamMember) 5 | -------------------------------------------------------------------------------- /pollsite/home/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/home/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/home/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/home/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/poll/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/poll/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/poll/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/poll/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/home/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/home/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/home/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/home/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/home/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/home/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/poll/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/poll/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/poll/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/poll/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/poll/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/poll/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/home/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/home/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/poll/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/poll/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/pollsite/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/pollsite/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/pollsite/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/pollsite/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-07-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-07-25.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-07-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-07-29.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-07-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-07-34.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-07-39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-07-39.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-07-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-07-46.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-07-49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-07-49.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-07-52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-07-52.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-07-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-07-55.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-08-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-08-12.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-08-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-08-16.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-08-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-08-27.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-08-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-08-34.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-08-47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-08-47.png -------------------------------------------------------------------------------- /CodePreview/Screenshot from 2020-07-15 19-09-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/CodePreview/Screenshot from 2020-07-15 19-09-16.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-32-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-32-11.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-32-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-32-23.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-32-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-32-27.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-32-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-32-30.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-33-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-33-15.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-33-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-33-36.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-33-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-33-41.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-33-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-33-46.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-33-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-33-50.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-33-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-33-57.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-34-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-34-02.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-34-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-34-16.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-34-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-34-25.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-34-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-34-54.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-35-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-35-07.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-35-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-35-45.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-35-49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-35-49.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-35-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-35-54.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-36-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-36-05.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-36-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-36-19.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-36-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-36-35.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-36-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-36-43.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-36-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-36-48.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-36-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-36-51.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-36-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-36-55.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-36-59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-36-59.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-37-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-37-08.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-37-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-37-19.png -------------------------------------------------------------------------------- /ScreenShots/Screenshot from 2020-07-15 18-37-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot from 2020-07-15 18-37-37.png -------------------------------------------------------------------------------- /pollsite/pollsite/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/pollsite/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/pollsite/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/pollsite/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/home/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/home/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/poll/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/poll/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/home/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/home/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /pollsite/poll/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/pollsite/poll/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-46-31-065_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-46-31-065_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-46-44-381_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-46-44-381_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-46-51-856_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-46-51-856_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-46-58-717_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-46-58-717_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-47-08-234_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-47-08-234_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-47-17-773_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-47-17-773_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-47-24-862_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-47-24-862_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-47-31-306_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-47-31-306_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-47-37-522_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-47-37-522_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-47-43-767_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-47-43-767_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-47-59-693_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-47-59-693_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-48-25-475_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-48-25-475_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-48-33-555_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-48-33-555_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-48-53-709_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-48-53-709_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-49-08-944_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-49-08-944_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-49-27-536_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-49-27-536_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-49-50-589_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-49-50-589_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-50-14-125_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-50-14-125_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-50-44-057_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-50-44-057_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-50-53-415_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-50-53-415_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-51-02-783_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-51-02-783_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-51-10-692_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-51-10-692_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-51-20-457_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-51-20-457_com.android.chrome.jpg -------------------------------------------------------------------------------- /ScreenShots/Screenshot_2020-07-15-18-51-30-308_com.android.chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aahnik/django-polling-site/HEAD/ScreenShots/Screenshot_2020-07-15-18-51-30-308_com.android.chrome.jpg -------------------------------------------------------------------------------- /pollsite/home/urls.py: -------------------------------------------------------------------------------- 1 | from . import views 2 | from django.urls import path 3 | 4 | urlpatterns = [ 5 | path('', views.index, name='index'), 6 | path('opensource/', views.opnsrc, name='opensource') 7 | ] 8 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | asgiref==3.2.10 2 | Django==2.1.7 3 | django-populate==0.3.2 4 | Faker==1.0.2 5 | python-dateutil==2.8.0 6 | pytz==2018.9 7 | PyYAML==5.4 8 | six==1.12.0 9 | sqlparse==0.3.1 10 | text-unidecode==1.2 11 | -------------------------------------------------------------------------------- /pollsite/templates/admin/base_site.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/base.html" %} 2 | 3 | {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} 4 | 5 | {% block branding %} 6 |
{{ error_message }}
{% endif %} 12 | 13 | 23 | {% endblock %} 24 |{{question.desc}} 25 |
26 | {% comment %} FINDME {% endcomment %} 27 | Vote Now 29 | 34 | 35 |No polls availaible
44 | {% endif %} 45 | 46 | {% endblock %} 47 | {{ question.question_text }} -------------------------------------------------------------------------------- /pollsite/pollsite/settings.py: -------------------------------------------------------------------------------- 1 | """ 2 | Django settings for pollsite project. 3 | 4 | Generated by 'django-admin startproject' using Django 3.0.8. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.0/topics/settings/ 8 | 9 | For the full list of settings and their values, see 10 | https://docs.djangoproject.com/en/3.0/ref/settings/ 11 | """ 12 | 13 | import os 14 | 15 | # Build paths inside the project like this: os.path.join(BASE_DIR, ...) 16 | BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 17 | 18 | 19 | # Quick-start development settings - unsuitable for production 20 | # See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/ 21 | 22 | # SECURITY WARNING: keep the secret key used in production secret! 23 | SECRET_KEY = '3zaz_n48y63wv5xl(s9=zfrkixc-p10p1g^thb=eqs*=c3t0gp' 24 | 25 | # SECURITY WARNING: don't run with debug turned on in production! 26 | DEBUG = True 27 | 28 | ALLOWED_HOSTS = ['192.168.1.7', '127.0.0.1'] 29 | 30 | 31 | # Application definition 32 | 33 | INSTALLED_APPS = [ 34 | 'home.apps.HomeConfig', 35 | 'poll.apps.PollConfig', 36 | 'django.contrib.admin', 37 | 'django.contrib.auth', 38 | 'django.contrib.contenttypes', 39 | 'django.contrib.sessions', 40 | 'django.contrib.messages', 41 | 'django.contrib.staticfiles', 42 | ] 43 | 44 | 45 | MIDDLEWARE = [ 46 | 'django.middleware.security.SecurityMiddleware', 47 | 'django.contrib.sessions.middleware.SessionMiddleware', 48 | 'django.middleware.common.CommonMiddleware', 49 | 'django.middleware.csrf.CsrfViewMiddleware', 50 | 'django.contrib.auth.middleware.AuthenticationMiddleware', 51 | 'django.contrib.messages.middleware.MessageMiddleware', 52 | 'django.middleware.clickjacking.XFrameOptionsMiddleware', 53 | ] 54 | 55 | ROOT_URLCONF = 'pollsite.urls' 56 | 57 | TEMPLATES = [ 58 | { 59 | 'BACKEND': 'django.template.backends.django.DjangoTemplates', 60 | 'DIRS': [os.path.join(BASE_DIR, 'templates')], 61 | 'APP_DIRS': True, 62 | 'OPTIONS': { 63 | 'context_processors': [ 64 | 'django.template.context_processors.debug', 65 | 'django.template.context_processors.request', 66 | 'django.contrib.auth.context_processors.auth', 67 | 'django.contrib.messages.context_processors.messages', 68 | ], 69 | }, 70 | }, 71 | ] 72 | 73 | WSGI_APPLICATION = 'pollsite.wsgi.application' 74 | 75 | 76 | # Database 77 | # https://docs.djangoproject.com/en/3.0/ref/settings/#databases 78 | 79 | DATABASES = { 80 | 'default': { 81 | 'ENGINE': 'django.db.backends.sqlite3', 82 | 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), 83 | } 84 | } 85 | 86 | 87 | # Password validation 88 | # https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators 89 | 90 | AUTH_PASSWORD_VALIDATORS = [ 91 | { 92 | 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 93 | }, 94 | { 95 | 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 96 | }, 97 | { 98 | 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 99 | }, 100 | { 101 | 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 102 | }, 103 | ] 104 | 105 | 106 | # Internationalization 107 | # https://docs.djangoproject.com/en/3.0/topics/i18n/ 108 | 109 | LANGUAGE_CODE = 'en-us' 110 | 111 | TIME_ZONE = 'Asia/Kolkata' 112 | 113 | USE_I18N = True 114 | 115 | USE_L10N = True 116 | 117 | USE_TZ = True 118 | 119 | 120 | # Static files (CSS, JavaScript, Images) 121 | # https://docs.djangoproject.com/en/3.0/howto/static-files/ 122 | 123 | STATIC_URL = '/static/' 124 | -------------------------------------------------------------------------------- /pollsite/templates/base_layout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {% block title %} 10 | {% comment %} title of page goes here {% endcomment %} 11 | {% endblock%} 12 | 13 | 14 | 15 | 16 | 17 |{{hpe.midDesc}}
37 |Downloads
48 |Participants
60 |Support
73 |Security
83 |{{hpe.teamDesc}}
100 |{{member.bio}} 111 |
112 | 113 | 114 | 118 | 119 | 120 | 126 | 127 | 128 | 134 | 135 | 136 |