├── Angular Data Source ├── app │ ├── app.component.html │ ├── flight-create │ │ └── flight-create.component.html │ ├── flight-edit │ │ └── flight-edit.component.html │ └── flight-list │ │ └── flight-list.component.html ├── assets │ └── icon_plane.png └── index.html ├── Data Source ├── flight_scheduler_db.sql ├── schedules.sql └── sqlite3.exe ├── LICENSE ├── README.md ├── Section 1.zip ├── Section 2 └── 2.4 End │ └── backend │ ├── flightscheduler │ ├── db.sqlite3 │ ├── flights │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── apps.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── serializers.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── flightscheduler │ │ ├── __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 │ └── manage.py │ └── requirements.txt ├── Section 3 ├── 3.1 End │ └── backend │ │ ├── flightscheduler │ │ ├── db.sqlite3 │ │ ├── flight_scheduler.sqlite3 │ │ ├── flights │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flightscheduler │ │ │ ├── __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 │ │ ├── manage.py │ │ └── sqlite3.exe │ │ └── requirements.txt ├── 3.1 Start │ └── backend │ │ ├── flightscheduler │ │ ├── db.sqlite3 │ │ ├── flights │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flightscheduler │ │ │ ├── __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 │ │ └── manage.py │ │ └── requirements.txt ├── 3.2 End │ └── backend │ │ ├── flightscheduler │ │ ├── db.sqlite3 │ │ ├── flight_scheduler.sqlite3 │ │ ├── flights │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flightscheduler │ │ │ ├── __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 │ │ ├── manage.py │ │ ├── schedules.sql │ │ └── sqlite3.exe │ │ └── requirements.txt ├── 3.2 Start │ └── backend │ │ ├── flightscheduler │ │ ├── db.sqlite3 │ │ ├── flight_scheduler.sqlite3 │ │ ├── flights │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flightscheduler │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ └── urls.cpython-37.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── manage.py │ │ ├── schedules.sql │ │ └── sqlite3.exe │ │ └── requirements.txt ├── 3.3 End │ └── backend │ │ ├── flightscheduler │ │ ├── db.sqlite3 │ │ ├── flight_scheduler.sqlite3 │ │ ├── flights │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flightscheduler │ │ │ ├── __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 │ │ ├── manage.py │ │ ├── schedules.sql │ │ └── sqlite3.exe │ │ └── requirements.txt ├── 3.3 Start │ └── backend │ │ ├── flightscheduler │ │ ├── db.sqlite3 │ │ ├── flight_scheduler.sqlite3 │ │ ├── flights │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flightscheduler │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ └── urls.cpython-37.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── manage.py │ │ ├── schedules.sql │ │ └── sqlite3.exe │ │ └── requirements.txt ├── 3.4 End │ └── backend │ │ ├── flightscheduler │ │ ├── db.sqlite3 │ │ ├── flight_scheduler.sqlite3 │ │ ├── flights │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flightscheduler │ │ │ ├── __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 │ │ ├── manage.py │ │ ├── schedules.sql │ │ └── sqlite3.exe │ │ └── requirements.txt └── 3.4 Start │ └── backend │ ├── flightscheduler │ ├── db.sqlite3 │ ├── flight_scheduler.sqlite3 │ ├── flights │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── apps.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── serializers.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── flightscheduler │ │ ├── __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 │ ├── manage.py │ ├── schedules.sql │ └── sqlite3.exe │ └── requirements.txt ├── Section 4 ├── 4.1 End │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ │ ├── assets │ │ └── .gitkeep │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 4.1 Start │ └── backend │ │ ├── flightscheduler │ │ ├── db.sqlite3 │ │ ├── flight_scheduler.sqlite3 │ │ ├── flights │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flightscheduler │ │ │ ├── __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 │ │ ├── manage.py │ │ ├── schedules.sql │ │ └── sqlite3.exe │ │ └── requirements.txt ├── 4.2 End │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 4.2 Start │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ │ ├── assets │ │ └── .gitkeep │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 4.3 End │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 4.3 Start │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 4.4 End │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── models │ │ │ └── flight.ts │ │ └── services │ │ │ └── flight.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 4.4 Start │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── models │ │ │ └── flight.ts │ │ └── services │ │ │ └── flight.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 4.5 End │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── flight-create │ │ │ ├── flight-create.component.css │ │ │ ├── flight-create.component.html │ │ │ └── flight-create.component.ts │ │ ├── flight-edit │ │ │ ├── flight-edit.component.css │ │ │ ├── flight-edit.component.html │ │ │ └── flight-edit.component.ts │ │ ├── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── models │ │ │ └── flight.ts │ │ └── services │ │ │ └── flight.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 4.5 Start │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── flight-create │ │ │ ├── flight-create.component.css │ │ │ ├── flight-create.component.html │ │ │ └── flight-create.component.ts │ │ ├── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── models │ │ │ └── flight.ts │ │ └── services │ │ │ └── flight.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 4.6 End │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── flight-create │ │ │ ├── flight-create.component.css │ │ │ ├── flight-create.component.html │ │ │ └── flight-create.component.ts │ │ ├── flight-edit │ │ │ ├── flight-edit.component.css │ │ │ ├── flight-edit.component.html │ │ │ └── flight-edit.component.ts │ │ ├── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── models │ │ │ └── flight.ts │ │ └── services │ │ │ └── flight.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts └── 4.6 Start │ ├── backend │ ├── flightscheduler │ │ ├── db.sqlite3 │ │ ├── flight_scheduler.sqlite3 │ │ ├── flights │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flightscheduler │ │ │ ├── __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 │ │ ├── manage.py │ │ ├── schedules.sql │ │ └── sqlite3.exe │ └── requirements.txt │ └── frontend │ ├── package.json │ └── src │ ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── flight-create │ │ ├── flight-create.component.css │ │ ├── flight-create.component.html │ │ └── flight-create.component.ts │ ├── flight-edit │ │ ├── flight-edit.component.css │ │ ├── flight-edit.component.html │ │ └── flight-edit.component.ts │ ├── flight-list │ │ ├── flight-list.component.css │ │ ├── flight-list.component.html │ │ └── flight-list.component.ts │ ├── models │ │ └── flight.ts │ └── services │ │ └── flight.service.ts │ ├── assets │ ├── .gitkeep │ └── icon_plane.png │ ├── environments │ ├── environment.prod.ts │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── Section 5 ├── 5.1 End │ ├── backend │ │ ├── flightscheduler │ │ │ ├── __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 │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── flight-create │ │ │ ├── flight-create.component.css │ │ │ ├── flight-create.component.html │ │ │ └── flight-create.component.ts │ │ ├── flight-edit │ │ │ ├── flight-edit.component.css │ │ │ ├── flight-edit.component.html │ │ │ └── flight-edit.component.ts │ │ ├── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── models │ │ │ └── flight.ts │ │ └── services │ │ │ └── flight.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 5.1 Start │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── flight-create │ │ │ ├── flight-create.component.css │ │ │ ├── flight-create.component.html │ │ │ └── flight-create.component.ts │ │ ├── flight-edit │ │ │ ├── flight-edit.component.css │ │ │ ├── flight-edit.component.html │ │ │ └── flight-edit.component.ts │ │ ├── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── models │ │ │ └── flight.ts │ │ └── services │ │ │ └── flight.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 5.2 End │ ├── backend │ │ ├── flightscheduler │ │ │ ├── __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 │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── flight-create │ │ │ ├── flight-create.component.css │ │ │ ├── flight-create.component.html │ │ │ └── flight-create.component.ts │ │ ├── flight-edit │ │ │ ├── flight-edit.component.css │ │ │ ├── flight-edit.component.html │ │ │ └── flight-edit.component.ts │ │ ├── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── models │ │ │ └── flight.ts │ │ └── services │ │ │ └── flight.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 5.2 Start │ ├── backend │ │ ├── flightscheduler │ │ │ ├── __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 │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── flight-create │ │ │ ├── flight-create.component.css │ │ │ ├── flight-create.component.html │ │ │ └── flight-create.component.ts │ │ ├── flight-edit │ │ │ ├── flight-edit.component.css │ │ │ ├── flight-edit.component.html │ │ │ └── flight-edit.component.ts │ │ ├── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── models │ │ │ └── flight.ts │ │ └── services │ │ │ └── flight.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts ├── 5.3 End │ ├── backend │ │ ├── flightscheduler │ │ │ ├── db.sqlite3 │ │ │ ├── flight_scheduler.sqlite3 │ │ │ ├── flights │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── serializers.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flightscheduler │ │ │ │ ├── __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 │ │ │ ├── manage.py │ │ │ ├── schedules.sql │ │ │ └── sqlite3.exe │ │ └── requirements.txt │ └── frontend │ │ ├── package.json │ │ └── src │ │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── flight-create │ │ │ ├── flight-create.component.css │ │ │ ├── flight-create.component.html │ │ │ └── flight-create.component.ts │ │ ├── flight-edit │ │ │ ├── flight-edit.component.css │ │ │ ├── flight-edit.component.html │ │ │ └── flight-edit.component.ts │ │ ├── flight-list │ │ │ ├── flight-list.component.css │ │ │ ├── flight-list.component.html │ │ │ └── flight-list.component.ts │ │ ├── models │ │ │ └── flight.ts │ │ └── services │ │ │ └── flight.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ └── icon_plane.png │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts └── 5.3 Start │ ├── backend │ ├── flightscheduler │ │ ├── __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 │ └── requirements.txt │ └── frontend │ ├── package.json │ └── src │ ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── flight-create │ │ ├── flight-create.component.css │ │ ├── flight-create.component.html │ │ └── flight-create.component.ts │ ├── flight-edit │ │ ├── flight-edit.component.css │ │ ├── flight-edit.component.html │ │ └── flight-edit.component.ts │ ├── flight-list │ │ ├── flight-list.component.css │ │ ├── flight-list.component.html │ │ └── flight-list.component.ts │ ├── models │ │ └── flight.ts │ └── services │ │ └── flight.service.ts │ ├── assets │ ├── .gitkeep │ └── icon_plane.png │ ├── environments │ ├── environment.prod.ts │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts └── Section 6 ├── 6.2 End ├── django2 │ └── django2 │ │ ├── db.sqlite3 │ │ ├── django2 │ │ ├── __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 │ │ ├── manage.py │ │ └── myapp │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py └── django3 │ └── django3 │ ├── db.sqlite3 │ ├── django3 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── asgi.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── myapp │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── demoapp.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── demoapp.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── 6.3 End ├── django2 │ └── django2 │ │ ├── db.sqlite3 │ │ ├── django2 │ │ ├── __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 │ │ ├── manage.py │ │ └── myapp │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py └── django3 │ ├── db.sqlite3 │ ├── django3 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── asgi.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── myapp │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── demoapp.cpython-37.pyc │ └── models.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── demoapp.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190929_0337.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_auto_20190929_0337.cpython-37.pyc │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── tests.py │ └── views.py ├── 6.3 Start ├── django2 │ └── django2 │ │ ├── db.sqlite3 │ │ ├── django2 │ │ ├── __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 │ │ ├── manage.py │ │ └── myapp │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py └── django3 │ ├── db.sqlite3 │ ├── django3 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── asgi.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── myapp │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── demoapp.cpython-37.pyc │ └── models.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── demoapp.py │ ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── tests.py │ └── views.py ├── 6.4 End ├── django2 │ ├── db.sqlite3 │ ├── django2 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── asgi.cpython-37.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── wsgi.cpython-37.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ └── myapp │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py └── django3 │ ├── db.sqlite3 │ ├── django3 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── asgi.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── myapp │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── demoapp.cpython-37.pyc │ └── models.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── demoapp.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190929_0337.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_auto_20190929_0337.cpython-37.pyc │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── tests.py │ └── views.py └── 6.4 Start ├── django2 └── django2 │ ├── db.sqlite3 │ ├── django2 │ ├── __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 │ ├── manage.py │ └── myapp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py └── django3 ├── db.sqlite3 ├── django3 ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── asgi.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── myapp ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── admin.cpython-37.pyc ├── demoapp.cpython-37.pyc └── models.cpython-37.pyc ├── admin.py ├── apps.py ├── demoapp.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20190929_0337.py ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-37.pyc │ ├── 0002_auto_20190929_0337.cpython-37.pyc │ └── __init__.cpython-37.pyc ├── models.py ├── tests.py └── views.py /Angular Data Source/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Angular Data Source/assets/icon_plane.png -------------------------------------------------------------------------------- /Data Source/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Data Source/sqlite3.exe -------------------------------------------------------------------------------- /Section 1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 1.zip -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 2/2.4 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 2/2.4 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 2/2.4 End/backend/flightscheduler/flights/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 2/2.4 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 2/2.4 End/backend/flightscheduler/flights/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 2/2.4 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 2/2.4 End/backend/flightscheduler/flights/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 2/2.4 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 2/2.4 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 2/2.4 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 2/2.4 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/flights/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/flights/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/flights/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 3/3.1 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flights/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 Start/backend/flightscheduler/flights/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 Start/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 Start/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flights/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 Start/backend/flightscheduler/flights/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flights/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 3/3.1 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.1 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flights/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/flights/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flights/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/flights/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flights/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/flights/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 3/3.2 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 Start/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 Start/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 3/3.2 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.2 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 3/3.3 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 Start/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 Start/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 3/3.3 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.3 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 3/3.4 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 Start/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 Start/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 3/3.4 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 3/3.4 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.1 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.1 End/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.1 End/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.1 End/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.1 End/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 End/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.1 End/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 Start/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 Start/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.1 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.1 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.2 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.2 End/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.2 End/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 4/4.2 End/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.2 End/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 4/4.2 End/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.2 End/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 End/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.2 End/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 Start/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 Start/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.2 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.2 Start/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 Start/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.2 Start/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 Start/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.2 Start/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.2 Start/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.2 Start/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.2 Start/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.3 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.3 End/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.3 End/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 4/4.3 End/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.3 End/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 4/4.3 End/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.3 End/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 End/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.3 End/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.3 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.3 Start/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.3 Start/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 4/4.3 Start/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.3 Start/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 4/4.3 Start/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.3 Start/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.3 Start/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.3 Start/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.4 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.4 End/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.4 End/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 4/4.4 End/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.4 End/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 4/4.4 End/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.4 End/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 End/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.4 End/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.4 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.4 Start/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.4 Start/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 4/4.4 Start/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.4 Start/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 4/4.4 Start/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.4 Start/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.4 Start/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.4 Start/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.5 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.5 End/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.5 End/frontend/src/app/flight-create/flight-create.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/frontend/src/app/flight-create/flight-create.component.css -------------------------------------------------------------------------------- /Section 4/4.5 End/frontend/src/app/flight-edit/flight-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/frontend/src/app/flight-edit/flight-edit.component.css -------------------------------------------------------------------------------- /Section 4/4.5 End/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 4/4.5 End/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.5 End/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 4/4.5 End/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.5 End/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 End/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.5 End/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.5 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.5 Start/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.5 Start/frontend/src/app/flight-create/flight-create.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/frontend/src/app/flight-create/flight-create.component.css -------------------------------------------------------------------------------- /Section 4/4.5 Start/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 4/4.5 Start/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.5 Start/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 4/4.5 Start/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.5 Start/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.5 Start/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.5 Start/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.6 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.6 End/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.6 End/frontend/src/app/flight-create/flight-create.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/frontend/src/app/flight-create/flight-create.component.css -------------------------------------------------------------------------------- /Section 4/4.6 End/frontend/src/app/flight-edit/flight-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/frontend/src/app/flight-edit/flight-edit.component.css -------------------------------------------------------------------------------- /Section 4/4.6 End/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 4/4.6 End/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.6 End/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 4/4.6 End/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.6 End/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 End/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.6 End/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 4/4.6 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 4/4.6 Start/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 4/4.6 Start/frontend/src/app/flight-create/flight-create.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/frontend/src/app/flight-create/flight-create.component.css -------------------------------------------------------------------------------- /Section 4/4.6 Start/frontend/src/app/flight-edit/flight-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/frontend/src/app/flight-edit/flight-edit.component.css -------------------------------------------------------------------------------- /Section 4/4.6 Start/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 4/4.6 Start/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 4/4.6 Start/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 4/4.6 Start/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 4/4.6 Start/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 4/4.6 Start/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 4/4.6 Start/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 5/5.1 End/backend/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/backend/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 5/5.1 End/backend/flightscheduler/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/backend/flightscheduler/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 End/backend/flightscheduler/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/backend/flightscheduler/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 End/backend/flightscheduler/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/backend/flightscheduler/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 End/backend/flightscheduler/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/backend/flightscheduler/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.1 End/backend/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 5/5.1 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.1 End/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 5/5.1 End/frontend/src/app/flight-create/flight-create.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/frontend/src/app/flight-create/flight-create.component.css -------------------------------------------------------------------------------- /Section 5/5.1 End/frontend/src/app/flight-edit/flight-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/frontend/src/app/flight-edit/flight-edit.component.css -------------------------------------------------------------------------------- /Section 5/5.1 End/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 5/5.1 End/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 5/5.1 End/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 5/5.1 End/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 5/5.1 End/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 End/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 5/5.1 End/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/flightscheduler/flights/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 5/5.1 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.1 Start/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 5/5.1 Start/frontend/src/app/flight-create/flight-create.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/frontend/src/app/flight-create/flight-create.component.css -------------------------------------------------------------------------------- /Section 5/5.1 Start/frontend/src/app/flight-edit/flight-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/frontend/src/app/flight-edit/flight-edit.component.css -------------------------------------------------------------------------------- /Section 5/5.1 Start/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 5/5.1 Start/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 5/5.1 Start/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 5/5.1 Start/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 5/5.1 Start/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.1 Start/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 5/5.1 Start/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 5/5.2 End/backend/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/backend/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 5/5.2 End/backend/flightscheduler/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/backend/flightscheduler/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 End/backend/flightscheduler/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/backend/flightscheduler/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 End/backend/flightscheduler/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/backend/flightscheduler/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 End/backend/flightscheduler/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/backend/flightscheduler/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 End/backend/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 5/5.2 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.2 End/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 5/5.2 End/frontend/src/app/flight-create/flight-create.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/frontend/src/app/flight-create/flight-create.component.css -------------------------------------------------------------------------------- /Section 5/5.2 End/frontend/src/app/flight-edit/flight-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/frontend/src/app/flight-edit/flight-edit.component.css -------------------------------------------------------------------------------- /Section 5/5.2 End/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 5/5.2 End/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 5/5.2 End/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 5/5.2 End/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 5/5.2 End/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 End/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 5/5.2 End/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 5/5.2 Start/backend/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/backend/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 5/5.2 Start/backend/flightscheduler/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/backend/flightscheduler/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 Start/backend/flightscheduler/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/backend/flightscheduler/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 Start/backend/flightscheduler/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/backend/flightscheduler/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 Start/backend/flightscheduler/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/backend/flightscheduler/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.2 Start/backend/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 5/5.2 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.2 Start/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 5/5.2 Start/frontend/src/app/flight-create/flight-create.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/frontend/src/app/flight-create/flight-create.component.css -------------------------------------------------------------------------------- /Section 5/5.2 Start/frontend/src/app/flight-edit/flight-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/frontend/src/app/flight-edit/flight-edit.component.css -------------------------------------------------------------------------------- /Section 5/5.2 Start/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 5/5.2 Start/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 5/5.2 Start/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 5/5.2 Start/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 5/5.2 Start/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.2 Start/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 5/5.2 Start/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/backend/flightscheduler/db.sqlite3 -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/flight_scheduler.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/backend/flightscheduler/flight_scheduler.sqlite3 -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/flights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/backend/flightscheduler/flights/__init__.py -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/backend/flightscheduler/flights/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/backend/flightscheduler/flights/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/flights/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FlightsConfig(AppConfig): 5 | name = 'flights' 6 | -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/flights/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/backend/flightscheduler/flights/migrations/__init__.py -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/flights/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/backend/flightscheduler/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/flightscheduler/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/backend/flightscheduler/sqlite3.exe -------------------------------------------------------------------------------- /Section 5/5.3 End/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/backend/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.3 End/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 5/5.3 End/frontend/src/app/flight-create/flight-create.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/frontend/src/app/flight-create/flight-create.component.css -------------------------------------------------------------------------------- /Section 5/5.3 End/frontend/src/app/flight-edit/flight-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/frontend/src/app/flight-edit/flight-edit.component.css -------------------------------------------------------------------------------- /Section 5/5.3 End/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 5/5.3 End/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 5/5.3 End/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 5/5.3 End/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 5/5.3 End/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 End/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 5/5.3 End/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 5/5.3 Start/backend/flightscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/backend/flightscheduler/__init__.py -------------------------------------------------------------------------------- /Section 5/5.3 Start/backend/flightscheduler/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/backend/flightscheduler/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 Start/backend/flightscheduler/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/backend/flightscheduler/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 Start/backend/flightscheduler/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/backend/flightscheduler/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 Start/backend/flightscheduler/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/backend/flightscheduler/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 5/5.3 Start/backend/flightscheduler/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from django.conf.urls import include 4 | 5 | urlpatterns = [ 6 | path('admin/', admin.site.urls), 7 | path('flights/', include('flights.urls')), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 5/5.3 Start/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/backend/requirements.txt -------------------------------------------------------------------------------- /Section 5/5.3 Start/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/frontend/src/app/app.component.css -------------------------------------------------------------------------------- /Section 5/5.3 Start/frontend/src/app/flight-create/flight-create.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/frontend/src/app/flight-create/flight-create.component.css -------------------------------------------------------------------------------- /Section 5/5.3 Start/frontend/src/app/flight-edit/flight-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/frontend/src/app/flight-edit/flight-edit.component.css -------------------------------------------------------------------------------- /Section 5/5.3 Start/frontend/src/app/flight-list/flight-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/frontend/src/app/flight-list/flight-list.component.css -------------------------------------------------------------------------------- /Section 5/5.3 Start/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/frontend/src/assets/.gitkeep -------------------------------------------------------------------------------- /Section 5/5.3 Start/frontend/src/assets/icon_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/frontend/src/assets/icon_plane.png -------------------------------------------------------------------------------- /Section 5/5.3 Start/frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Section 5/5.3 Start/frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 5/5.3 Start/frontend/src/favicon.ico -------------------------------------------------------------------------------- /Section 5/5.3 Start/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django2/django2/db.sqlite3 -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/django2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django2/django2/django2/__init__.py -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/django2/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django2/django2/django2/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/django2/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django2/django2/django2/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/django2/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django2/django2/django2/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/django2/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django2/django2/django2/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/myapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django2/django2/myapp/__init__.py -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/myapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/myapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyappConfig(AppConfig): 5 | name = 'myapp' 6 | -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django2/django2/myapp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/myapp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/myapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 6/6.2 End/django2/django2/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/db.sqlite3 -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/django3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/django3/__init__.py -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/django3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/django3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/django3/__pycache__/asgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/django3/__pycache__/asgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/django3/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/django3/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/django3/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/django3/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/django3/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/django3/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/myapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/myapp/__init__.py -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/myapp/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/myapp/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/myapp/__pycache__/demoapp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/myapp/__pycache__/demoapp.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/myapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/myapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyappConfig(AppConfig): 5 | name = 'myapp' 6 | -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.2 End/django3/django3/myapp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/myapp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/myapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 6/6.2 End/django3/django3/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django2/django2/db.sqlite3 -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/django2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django2/django2/django2/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/django2/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django2/django2/django2/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/django2/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django2/django2/django2/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/django2/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django2/django2/django2/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/django2/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django2/django2/django2/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/myapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django2/django2/myapp/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/myapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/myapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyappConfig(AppConfig): 5 | name = 'myapp' 6 | -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django2/django2/myapp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/myapp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/myapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 End/django2/django2/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/db.sqlite3 -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/django3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/django3/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/django3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/django3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/django3/__pycache__/asgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/django3/__pycache__/asgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/django3/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/django3/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/django3/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/django3/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/django3/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/django3/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/myapp/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/myapp/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/myapp/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/__pycache__/demoapp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/myapp/__pycache__/demoapp.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/myapp/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyappConfig(AppConfig): 5 | name = 'myapp' 6 | -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/myapp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 End/django3/myapp/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 End/django3/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django2/django2/db.sqlite3 -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/django2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django2/django2/django2/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/django2/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django2/django2/django2/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/django2/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django2/django2/django2/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/django2/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django2/django2/django2/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/django2/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django2/django2/django2/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/myapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django2/django2/myapp/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/myapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/myapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyappConfig(AppConfig): 5 | name = 'myapp' 6 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django2/django2/myapp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/myapp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/myapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/django2/django2/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/db.sqlite3 -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/django3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/django3/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/django3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/django3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/django3/__pycache__/asgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/django3/__pycache__/asgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/django3/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/django3/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/django3/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/django3/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/django3/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/django3/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/myapp/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/myapp/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/myapp/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/__pycache__/demoapp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/myapp/__pycache__/demoapp.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/myapp/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyappConfig(AppConfig): 5 | name = 'myapp' 6 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/myapp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.3 Start/django3/myapp/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | 5 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 6/6.3 Start/django3/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django2/db.sqlite3 -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/django2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django2/django2/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/django2/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django2/django2/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/django2/__pycache__/asgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django2/django2/__pycache__/asgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/django2/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django2/django2/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/django2/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django2/django2/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/django2/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django2/django2/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/myapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django2/myapp/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/myapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/myapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyappConfig(AppConfig): 5 | name = 'myapp' 6 | -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django2/myapp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/myapp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/myapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 End/django2/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/db.sqlite3 -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/django3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/django3/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/django3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/django3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/django3/__pycache__/asgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/django3/__pycache__/asgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/django3/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/django3/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/django3/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/django3/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/django3/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/django3/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/myapp/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/myapp/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/myapp/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/__pycache__/demoapp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/myapp/__pycache__/demoapp.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/myapp/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyappConfig(AppConfig): 5 | name = 'myapp' 6 | -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/myapp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 End/django3/myapp/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 End/django3/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django2/django2/db.sqlite3 -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/django2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django2/django2/django2/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/django2/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django2/django2/django2/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/django2/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django2/django2/django2/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/django2/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django2/django2/django2/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/django2/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django2/django2/django2/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/myapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django2/django2/myapp/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/myapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/myapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyappConfig(AppConfig): 5 | name = 'myapp' 6 | -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django2/django2/myapp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/myapp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/myapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 Start/django2/django2/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/db.sqlite3 -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/django3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/django3/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/django3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/django3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/django3/__pycache__/asgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/django3/__pycache__/asgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/django3/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/django3/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/django3/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/django3/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/django3/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/django3/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/myapp/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/myapp/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/myapp/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/__pycache__/demoapp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/myapp/__pycache__/demoapp.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/myapp/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyappConfig(AppConfig): 5 | name = 'myapp' 6 | -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/myapp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/-Full-Stack-Web-Development-with-Django-2.x-and-Angular-8/7ab770147a2814109ada75fde2b342d1fa11e9d1/Section 6/6.4 Start/django3/myapp/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 6/6.4 Start/django3/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | --------------------------------------------------------------------------------