├── 01-django-tutorial └── mysite │ ├── db.sqlite3 │ ├── manage.py │ ├── mysite │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── 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 ├── 02-django-tutorial └── mysite │ ├── db.sqlite3 │ ├── manage.py │ ├── mysite │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── polls │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── apps.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180817_1244.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_auto_20180817_1244.cpython-37.pyc │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── 03-django-tutorial └── mysite │ ├── db.sqlite3 │ ├── manage.py │ ├── mysite │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── polls │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── apps.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180817_1244.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_auto_20180817_1244.cpython-37.pyc │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── templates │ └── polls │ │ ├── detail.html │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 04-django-tutorial └── mysite │ ├── db.sqlite3 │ ├── manage.py │ ├── mysite │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── polls │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── apps.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180817_1244.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_auto_20180817_1244.cpython-37.pyc │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── templates │ └── polls │ │ ├── detail.html │ │ ├── index.html │ │ └── results.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 05-django-tutorial └── mysite │ ├── db.sqlite3 │ ├── manage.py │ ├── mysite │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── polls │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── apps.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── tests.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180817_1244.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_auto_20180817_1244.cpython-37.pyc │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── templates │ └── polls │ │ ├── detail.html │ │ ├── index.html │ │ └── results.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 06-django-tutorial └── mysite │ ├── db.sqlite3 │ ├── manage.py │ ├── mysite │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── polls │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── apps.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── tests.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180817_1244.py │ ├── 0003_auto_20180818_0246.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_auto_20180817_1244.cpython-37.pyc │ │ ├── 0003_auto_20180818_0246.cpython-37.pyc │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── static │ └── polls │ │ ├── images │ │ └── background.jpeg │ │ └── style.css │ ├── templates │ └── polls │ │ ├── detail.html │ │ ├── index.html │ │ └── results.html │ ├── tests.py │ ├── urls.py │ └── views.py └── README.md /01-django-tutorial/mysite/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-django-tutorial/mysite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/manage.py -------------------------------------------------------------------------------- /01-django-tutorial/mysite/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /01-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /01-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /01-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /01-django-tutorial/mysite/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/mysite/settings.py -------------------------------------------------------------------------------- /01-django-tutorial/mysite/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/mysite/urls.py -------------------------------------------------------------------------------- /01-django-tutorial/mysite/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/mysite/wsgi.py -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/polls/admin.py -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/polls/apps.py -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/polls/models.py -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/polls/tests.py -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/polls/urls.py -------------------------------------------------------------------------------- /01-django-tutorial/mysite/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/01-django-tutorial/mysite/polls/views.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/db.sqlite3 -------------------------------------------------------------------------------- /02-django-tutorial/mysite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/manage.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/mysite/settings.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/mysite/urls.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/mysite/wsgi.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/admin.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/apps.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/migrations/0002_auto_20180817_1244.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/migrations/0002_auto_20180817_1244.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/migrations/__pycache__/0002_auto_20180817_1244.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/migrations/__pycache__/0002_auto_20180817_1244.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/models.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/tests.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/urls.py -------------------------------------------------------------------------------- /02-django-tutorial/mysite/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/02-django-tutorial/mysite/polls/views.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/db.sqlite3 -------------------------------------------------------------------------------- /03-django-tutorial/mysite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/manage.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/mysite/settings.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/mysite/urls.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/mysite/wsgi.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/admin.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/apps.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/migrations/0002_auto_20180817_1244.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/migrations/0002_auto_20180817_1244.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/migrations/__pycache__/0002_auto_20180817_1244.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/migrations/__pycache__/0002_auto_20180817_1244.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/models.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/templates/polls/index.html -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/tests.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/urls.py -------------------------------------------------------------------------------- /03-django-tutorial/mysite/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/03-django-tutorial/mysite/polls/views.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/db.sqlite3 -------------------------------------------------------------------------------- /04-django-tutorial/mysite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/manage.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/mysite/settings.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/mysite/urls.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/mysite/wsgi.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/admin.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/apps.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/migrations/0002_auto_20180817_1244.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/migrations/0002_auto_20180817_1244.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/migrations/__pycache__/0002_auto_20180817_1244.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/migrations/__pycache__/0002_auto_20180817_1244.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/models.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/templates/polls/index.html -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/templates/polls/results.html -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/tests.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/urls.py -------------------------------------------------------------------------------- /04-django-tutorial/mysite/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/04-django-tutorial/mysite/polls/views.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/db.sqlite3 -------------------------------------------------------------------------------- /05-django-tutorial/mysite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/manage.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/mysite/settings.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/mysite/urls.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/mysite/wsgi.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/__pycache__/tests.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/__pycache__/tests.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/admin.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/apps.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/migrations/0002_auto_20180817_1244.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/migrations/0002_auto_20180817_1244.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/migrations/__pycache__/0002_auto_20180817_1244.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/migrations/__pycache__/0002_auto_20180817_1244.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/models.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/templates/polls/index.html -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/templates/polls/results.html -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/tests.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/urls.py -------------------------------------------------------------------------------- /05-django-tutorial/mysite/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/05-django-tutorial/mysite/polls/views.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/db.sqlite3 -------------------------------------------------------------------------------- /06-django-tutorial/mysite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/manage.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/mysite/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/mysite/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/mysite/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/mysite/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/mysite/settings.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/mysite/urls.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/mysite/wsgi.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/__pycache__/tests.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/__pycache__/tests.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/admin.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/apps.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/migrations/0002_auto_20180817_1244.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/migrations/0002_auto_20180817_1244.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/migrations/0003_auto_20180818_0246.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/migrations/0003_auto_20180818_0246.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/migrations/__pycache__/0002_auto_20180817_1244.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/migrations/__pycache__/0002_auto_20180817_1244.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/migrations/__pycache__/0003_auto_20180818_0246.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/migrations/__pycache__/0003_auto_20180818_0246.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/models.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/static/polls/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/static/polls/images/background.jpeg -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/static/polls/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/static/polls/style.css -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/templates/polls/index.html -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/templates/polls/results.html -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/tests.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/urls.py -------------------------------------------------------------------------------- /06-django-tutorial/mysite/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/06-django-tutorial/mysite/polls/views.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiacademy131/django-tutorial/HEAD/README.md --------------------------------------------------------------------------------