├── README.md ├── db.sqlite3 ├── manage.py ├── mysite ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py └── polls ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── urls.cpython-37.pyc └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── migrations └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py /README.md: -------------------------------------------------------------------------------- 1 | 🎩 Management System Django 2 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/manage.py -------------------------------------------------------------------------------- /mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/mysite/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/mysite/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/mysite/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/mysite/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/mysite/asgi.py -------------------------------------------------------------------------------- /mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/mysite/settings.py -------------------------------------------------------------------------------- /mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/mysite/urls.py -------------------------------------------------------------------------------- /mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/mysite/wsgi.py -------------------------------------------------------------------------------- /polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /polls/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/polls/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /polls/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/polls/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /polls/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/polls/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/polls/admin.py -------------------------------------------------------------------------------- /polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/polls/apps.py -------------------------------------------------------------------------------- /polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/polls/models.py -------------------------------------------------------------------------------- /polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/polls/tests.py -------------------------------------------------------------------------------- /polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/polls/urls.py -------------------------------------------------------------------------------- /polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Django-Manage/HEAD/polls/views.py --------------------------------------------------------------------------------