├── .gitignore ├── README.md ├── concepts.jpg ├── keys.sublime-project ├── keys.sublime-workspace └── src ├── cars ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20161220_2346.py │ ├── 0003_auto_20161220_2356.py │ ├── 0004_auto_20161221_0009.py │ ├── 0005_auto_20161221_0010.py │ ├── 0006_auto_20161221_0012.py │ ├── 0007_auto_20161221_0013.py │ ├── 0008_auto_20161221_0026.py │ ├── 0009_car_updated_by.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── db.sqlite3 ├── keys ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py └── manage.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/README.md -------------------------------------------------------------------------------- /concepts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/concepts.jpg -------------------------------------------------------------------------------- /keys.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/keys.sublime-project -------------------------------------------------------------------------------- /keys.sublime-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/keys.sublime-workspace -------------------------------------------------------------------------------- /src/cars/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cars/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/admin.py -------------------------------------------------------------------------------- /src/cars/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/apps.py -------------------------------------------------------------------------------- /src/cars/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/cars/migrations/0002_auto_20161220_2346.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/migrations/0002_auto_20161220_2346.py -------------------------------------------------------------------------------- /src/cars/migrations/0003_auto_20161220_2356.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/migrations/0003_auto_20161220_2356.py -------------------------------------------------------------------------------- /src/cars/migrations/0004_auto_20161221_0009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/migrations/0004_auto_20161221_0009.py -------------------------------------------------------------------------------- /src/cars/migrations/0005_auto_20161221_0010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/migrations/0005_auto_20161221_0010.py -------------------------------------------------------------------------------- /src/cars/migrations/0006_auto_20161221_0012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/migrations/0006_auto_20161221_0012.py -------------------------------------------------------------------------------- /src/cars/migrations/0007_auto_20161221_0013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/migrations/0007_auto_20161221_0013.py -------------------------------------------------------------------------------- /src/cars/migrations/0008_auto_20161221_0026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/migrations/0008_auto_20161221_0026.py -------------------------------------------------------------------------------- /src/cars/migrations/0009_car_updated_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/migrations/0009_car_updated_by.py -------------------------------------------------------------------------------- /src/cars/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cars/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/models.py -------------------------------------------------------------------------------- /src/cars/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/cars/tests.py -------------------------------------------------------------------------------- /src/cars/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /src/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/db.sqlite3 -------------------------------------------------------------------------------- /src/keys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/keys/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/keys/settings.py -------------------------------------------------------------------------------- /src/keys/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/keys/urls.py -------------------------------------------------------------------------------- /src/keys/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/keys/wsgi.py -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Foreign-Keys-Unleashed/HEAD/src/manage.py --------------------------------------------------------------------------------