├── .DS_Store ├── .gitattributes ├── .gitignore ├── 002-OR-queries ├── README.md ├── Task1-Setup.zip ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── student │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── output.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 003-AND-queries ├── README.md ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── student │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── output.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 004-UNION-queries ├── README.md ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── student │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── output.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 005-NOT-queries ├── README.md ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── student │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── output.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 006-Output-Individual-Fields ├── README.md ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── student │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── output.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 007-Aggregation ├── README.md └── example_files │ ├── .gitattributes │ ├── book │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py │ ├── books.csv │ ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── db.sqlite3 │ ├── manage.py │ └── templates │ └── index.html ├── 008-Delete-queries ├── .DS_Store ├── LICENSE ├── README.md ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py ├── notes.md ├── pytest.ini ├── requirements.txt └── student │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_student_age10-20.py │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── templates │ └── output.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 020-Transaction-Atomicity ├── bank │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── templates │ └── index.html ├── 021-Inheritance-Optimisation ├── LICENSE ├── README.md ├── basket │ ├── __init__.py │ ├── apps.py │ ├── basket.py │ ├── context_processors.py │ ├── migrations │ │ └── __init__.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py ├── media │ └── images │ │ ├── default.png │ │ ├── img1_DCytNvp.png │ │ └── img2_SUlRxwK.png ├── requirements.txt ├── setup.cfg ├── static │ ├── account │ │ └── css │ │ │ └── account.css │ ├── basket │ │ └── css │ │ │ └── basket.css │ ├── core │ │ └── css │ │ │ └── base.css │ ├── logo.png │ ├── payment │ │ ├── css │ │ │ └── payment.css │ │ └── index.js │ └── store │ │ └── css │ │ └── store.css ├── store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── context_processors.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views.py └── templates │ ├── account │ ├── dashboard │ │ ├── dashboard.html │ │ ├── delete_confirm.html │ │ └── edit_details.html │ ├── login.html │ ├── password_reset │ │ ├── password_reset_confirm.html │ │ ├── password_reset_email.html │ │ ├── password_reset_form.html │ │ └── reset_status.html │ ├── registration │ │ ├── account_activation_email.html │ │ ├── activation_invalid.html │ │ ├── register.html │ │ └── register_email_confirm.html │ └── sub_base.html │ ├── base.html │ ├── basket │ └── summary.html │ ├── payment │ ├── error.html │ ├── orderplaced.html │ ├── payment_form.html │ └── sub_base.html │ └── store │ ├── category.html │ ├── index.html │ └── single.html ├── 022-Multiple-Database-Configuration ├── aqua.db.sqlite3 ├── aqua │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── add.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── blue.db.sqlite3 ├── blue │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── add.html │ │ └── view.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── notes.text ├── routers │ └── db_routers.py ├── users.db.sqlite3 └── users │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── 023-noORM-raw-sql ├── README.md ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── student │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── output.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 024-Raw-SQL ├── README.md ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── student │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── output.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 030-Detete-Signals ├── .DS_Store ├── LICENSE ├── README.md ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py ├── notes.md ├── pytest.ini ├── requirements.txt └── student │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_student_age10-20.py │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── templates │ └── output.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── LICENSE ├── README.md ├── logo.svg └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/.gitignore -------------------------------------------------------------------------------- /002-OR-queries/README.md: -------------------------------------------------------------------------------- 1 | # YT-Django-ORM-introduction-OR-queries-part2 2 | 3 | -------------------------------------------------------------------------------- /002-OR-queries/Task1-Setup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/Task1-Setup.zip -------------------------------------------------------------------------------- /002-OR-queries/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /002-OR-queries/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/core/asgi.py -------------------------------------------------------------------------------- /002-OR-queries/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/core/settings.py -------------------------------------------------------------------------------- /002-OR-queries/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/core/urls.py -------------------------------------------------------------------------------- /002-OR-queries/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/core/wsgi.py -------------------------------------------------------------------------------- /002-OR-queries/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/db.sqlite3 -------------------------------------------------------------------------------- /002-OR-queries/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/manage.py -------------------------------------------------------------------------------- /002-OR-queries/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /002-OR-queries/student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/student/admin.py -------------------------------------------------------------------------------- /002-OR-queries/student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/student/apps.py -------------------------------------------------------------------------------- /002-OR-queries/student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /002-OR-queries/student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /002-OR-queries/student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/student/models.py -------------------------------------------------------------------------------- /002-OR-queries/student/templates/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/student/templates/output.html -------------------------------------------------------------------------------- /002-OR-queries/student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/student/tests.py -------------------------------------------------------------------------------- /002-OR-queries/student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/student/urls.py -------------------------------------------------------------------------------- /002-OR-queries/student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/002-OR-queries/student/views.py -------------------------------------------------------------------------------- /003-AND-queries/README.md: -------------------------------------------------------------------------------- 1 | # YT-Django-ORM-introduction-AND-queries-part3 2 | 3 | -------------------------------------------------------------------------------- /003-AND-queries/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /003-AND-queries/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/core/asgi.py -------------------------------------------------------------------------------- /003-AND-queries/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/core/settings.py -------------------------------------------------------------------------------- /003-AND-queries/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/core/urls.py -------------------------------------------------------------------------------- /003-AND-queries/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/core/wsgi.py -------------------------------------------------------------------------------- /003-AND-queries/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/db.sqlite3 -------------------------------------------------------------------------------- /003-AND-queries/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/manage.py -------------------------------------------------------------------------------- /003-AND-queries/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /003-AND-queries/student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/student/admin.py -------------------------------------------------------------------------------- /003-AND-queries/student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/student/apps.py -------------------------------------------------------------------------------- /003-AND-queries/student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /003-AND-queries/student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /003-AND-queries/student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/student/models.py -------------------------------------------------------------------------------- /003-AND-queries/student/templates/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/student/templates/output.html -------------------------------------------------------------------------------- /003-AND-queries/student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/student/tests.py -------------------------------------------------------------------------------- /003-AND-queries/student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/student/urls.py -------------------------------------------------------------------------------- /003-AND-queries/student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/003-AND-queries/student/views.py -------------------------------------------------------------------------------- /004-UNION-queries/README.md: -------------------------------------------------------------------------------- 1 | # YT-Django-ORM-introduction-UNION-queries-part4 2 | 3 | -------------------------------------------------------------------------------- /004-UNION-queries/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /004-UNION-queries/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/core/asgi.py -------------------------------------------------------------------------------- /004-UNION-queries/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/core/settings.py -------------------------------------------------------------------------------- /004-UNION-queries/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/core/urls.py -------------------------------------------------------------------------------- /004-UNION-queries/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/core/wsgi.py -------------------------------------------------------------------------------- /004-UNION-queries/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/db.sqlite3 -------------------------------------------------------------------------------- /004-UNION-queries/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/manage.py -------------------------------------------------------------------------------- /004-UNION-queries/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /004-UNION-queries/student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/student/admin.py -------------------------------------------------------------------------------- /004-UNION-queries/student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/student/apps.py -------------------------------------------------------------------------------- /004-UNION-queries/student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /004-UNION-queries/student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /004-UNION-queries/student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/student/models.py -------------------------------------------------------------------------------- /004-UNION-queries/student/templates/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/student/templates/output.html -------------------------------------------------------------------------------- /004-UNION-queries/student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/student/tests.py -------------------------------------------------------------------------------- /004-UNION-queries/student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/student/urls.py -------------------------------------------------------------------------------- /004-UNION-queries/student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/004-UNION-queries/student/views.py -------------------------------------------------------------------------------- /005-NOT-queries/README.md: -------------------------------------------------------------------------------- 1 | # YT-Django-ORM-introduction-NOT-queries-part5 2 | 3 | -------------------------------------------------------------------------------- /005-NOT-queries/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /005-NOT-queries/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/core/asgi.py -------------------------------------------------------------------------------- /005-NOT-queries/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/core/settings.py -------------------------------------------------------------------------------- /005-NOT-queries/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/core/urls.py -------------------------------------------------------------------------------- /005-NOT-queries/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/core/wsgi.py -------------------------------------------------------------------------------- /005-NOT-queries/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/db.sqlite3 -------------------------------------------------------------------------------- /005-NOT-queries/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/manage.py -------------------------------------------------------------------------------- /005-NOT-queries/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /005-NOT-queries/student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/student/admin.py -------------------------------------------------------------------------------- /005-NOT-queries/student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/student/apps.py -------------------------------------------------------------------------------- /005-NOT-queries/student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /005-NOT-queries/student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /005-NOT-queries/student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/student/models.py -------------------------------------------------------------------------------- /005-NOT-queries/student/templates/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/student/templates/output.html -------------------------------------------------------------------------------- /005-NOT-queries/student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/student/tests.py -------------------------------------------------------------------------------- /005-NOT-queries/student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/student/urls.py -------------------------------------------------------------------------------- /005-NOT-queries/student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/005-NOT-queries/student/views.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/README.md: -------------------------------------------------------------------------------- 1 | # YT-Django-ORM-introduction-output-individual-fields-part6 2 | 3 | -------------------------------------------------------------------------------- /006-Output-Individual-Fields/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /006-Output-Individual-Fields/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/core/asgi.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/core/settings.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/core/urls.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/core/wsgi.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/db.sqlite3 -------------------------------------------------------------------------------- /006-Output-Individual-Fields/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/manage.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /006-Output-Individual-Fields/student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/student/admin.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/student/apps.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /006-Output-Individual-Fields/student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/student/models.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/student/templates/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/student/templates/output.html -------------------------------------------------------------------------------- /006-Output-Individual-Fields/student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/student/tests.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/student/urls.py -------------------------------------------------------------------------------- /006-Output-Individual-Fields/student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/006-Output-Individual-Fields/student/views.py -------------------------------------------------------------------------------- /007-Aggregation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/README.md -------------------------------------------------------------------------------- /007-Aggregation/example_files/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/.gitattributes -------------------------------------------------------------------------------- /007-Aggregation/example_files/book/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /007-Aggregation/example_files/book/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/book/admin.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/book/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/book/apps.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/book/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/book/migrations/0001_initial.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/book/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /007-Aggregation/example_files/book/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/book/models.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/book/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/book/tests.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/book/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/book/views.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/books.csv -------------------------------------------------------------------------------- /007-Aggregation/example_files/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /007-Aggregation/example_files/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/core/asgi.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/core/settings.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/core/urls.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/core/wsgi.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/db.sqlite3 -------------------------------------------------------------------------------- /007-Aggregation/example_files/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/manage.py -------------------------------------------------------------------------------- /007-Aggregation/example_files/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/007-Aggregation/example_files/templates/index.html -------------------------------------------------------------------------------- /008-Delete-queries/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/.DS_Store -------------------------------------------------------------------------------- /008-Delete-queries/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/LICENSE -------------------------------------------------------------------------------- /008-Delete-queries/README.md: -------------------------------------------------------------------------------- 1 | # YT_Django_ORM_CheckConstraints 2 | 3 | -------------------------------------------------------------------------------- /008-Delete-queries/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /008-Delete-queries/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/core/asgi.py -------------------------------------------------------------------------------- /008-Delete-queries/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/core/settings.py -------------------------------------------------------------------------------- /008-Delete-queries/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/core/urls.py -------------------------------------------------------------------------------- /008-Delete-queries/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/core/wsgi.py -------------------------------------------------------------------------------- /008-Delete-queries/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/db.sqlite3 -------------------------------------------------------------------------------- /008-Delete-queries/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/manage.py -------------------------------------------------------------------------------- /008-Delete-queries/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/notes.md -------------------------------------------------------------------------------- /008-Delete-queries/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/pytest.ini -------------------------------------------------------------------------------- /008-Delete-queries/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/requirements.txt -------------------------------------------------------------------------------- /008-Delete-queries/student/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/.DS_Store -------------------------------------------------------------------------------- /008-Delete-queries/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /008-Delete-queries/student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/admin.py -------------------------------------------------------------------------------- /008-Delete-queries/student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/apps.py -------------------------------------------------------------------------------- /008-Delete-queries/student/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/forms.py -------------------------------------------------------------------------------- /008-Delete-queries/student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /008-Delete-queries/student/migrations/0002_student_age10-20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/migrations/0002_student_age10-20.py -------------------------------------------------------------------------------- /008-Delete-queries/student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /008-Delete-queries/student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/models.py -------------------------------------------------------------------------------- /008-Delete-queries/student/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/signals.py -------------------------------------------------------------------------------- /008-Delete-queries/student/templates/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/templates/output.html -------------------------------------------------------------------------------- /008-Delete-queries/student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/tests.py -------------------------------------------------------------------------------- /008-Delete-queries/student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/urls.py -------------------------------------------------------------------------------- /008-Delete-queries/student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/008-Delete-queries/student/views.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/bank/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /020-Transaction-Atomicity/bank/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/bank/admin.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/bank/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/bank/apps.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/bank/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/bank/forms.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/bank/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/bank/migrations/0001_initial.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/bank/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /020-Transaction-Atomicity/bank/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/bank/models.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/bank/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/bank/tests.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/bank/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/bank/views.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /020-Transaction-Atomicity/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/core/asgi.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/core/settings.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/core/urls.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/core/wsgi.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/db.sqlite3 -------------------------------------------------------------------------------- /020-Transaction-Atomicity/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/manage.py -------------------------------------------------------------------------------- /020-Transaction-Atomicity/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/020-Transaction-Atomicity/templates/index.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/LICENSE -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/README.md -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/basket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/basket/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/basket/apps.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/basket/basket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/basket/basket.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/basket/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/basket/context_processors.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/basket/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/basket/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/basket/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/basket/tests/test_views.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/basket/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/basket/urls.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/basket/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/basket/views.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/core/asgi.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/core/settings.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/core/urls.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/core/wsgi.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/db.sqlite3 -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/manage.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/media/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/media/images/default.png -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/media/images/img1_DCytNvp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/media/images/img1_DCytNvp.png -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/media/images/img2_SUlRxwK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/media/images/img2_SUlRxwK.png -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/requirements.txt -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = .git,*migrations*,*venv* 3 | max-line-length = 119 -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/static/account/css/account.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/static/account/css/account.css -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/static/basket/css/basket.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/static/core/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/static/core/css/base.css -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/static/logo.png -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/static/payment/css/payment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/static/payment/css/payment.css -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/static/payment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/static/payment/index.js -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/static/store/css/store.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/static/store/css/store.css -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/store/admin.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/store/apps.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/store/context_processors.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/store/migrations/0001_initial.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/store/models.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/store/tests/test_models.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/store/tests/test_views.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/store/urls.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/store/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/store/views.py -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/dashboard/dashboard.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/dashboard/delete_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/dashboard/delete_confirm.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/dashboard/edit_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/dashboard/edit_details.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/login.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/password_reset/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/password_reset/password_reset_confirm.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/password_reset/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/password_reset/password_reset_email.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/password_reset/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/password_reset/password_reset_form.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/password_reset/reset_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/password_reset/reset_status.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/registration/account_activation_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/registration/account_activation_email.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/registration/activation_invalid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/registration/activation_invalid.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/registration/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/registration/register.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/registration/register_email_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/registration/register_email_confirm.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/account/sub_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/account/sub_base.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/base.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/basket/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/basket/summary.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/payment/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/payment/error.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/payment/orderplaced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/payment/orderplaced.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/payment/payment_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/payment/payment_form.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/payment/sub_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/payment/sub_base.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/store/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/store/category.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/store/index.html -------------------------------------------------------------------------------- /021-Inheritance-Optimisation/templates/store/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/021-Inheritance-Optimisation/templates/store/single.html -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua.db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/aqua.db.sqlite3 -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/aqua/admin.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/aqua/apps.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/aqua/migrations/0001_initial.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/aqua/models.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua/templates/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/aqua/templates/add.html -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/aqua/tests.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/aqua/urls.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/aqua/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/aqua/views.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue.db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/blue.db.sqlite3 -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/blue/admin.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/blue/apps.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/blue/migrations/0001_initial.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/blue/models.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/templates/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/blue/templates/add.html -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/templates/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/blue/templates/view.html -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/blue/tests.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/blue/urls.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/blue/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/blue/views.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/core/asgi.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/core/settings.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/core/urls.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/core/wsgi.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/manage.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/notes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/notes.text -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/routers/db_routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/routers/db_routers.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/users.db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/users.db.sqlite3 -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/users/admin.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/users/apps.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/users/models.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/022-Multiple-Database-Configuration/users/tests.py -------------------------------------------------------------------------------- /022-Multiple-Database-Configuration/users/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /023-noORM-raw-sql/README.md: -------------------------------------------------------------------------------- 1 | # YT-Django-ORM-introduction-noORM-raw-sql-part8 2 | 3 | -------------------------------------------------------------------------------- /023-noORM-raw-sql/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /023-noORM-raw-sql/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/core/asgi.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/core/settings.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/core/urls.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/core/wsgi.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/db.sqlite3 -------------------------------------------------------------------------------- /023-noORM-raw-sql/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/manage.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /023-noORM-raw-sql/student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/student/admin.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/student/apps.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /023-noORM-raw-sql/student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/student/models.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/student/templates/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/student/templates/output.html -------------------------------------------------------------------------------- /023-noORM-raw-sql/student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/student/tests.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/student/urls.py -------------------------------------------------------------------------------- /023-noORM-raw-sql/student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/023-noORM-raw-sql/student/views.py -------------------------------------------------------------------------------- /024-Raw-SQL/README.md: -------------------------------------------------------------------------------- 1 | # YT-Django-ORM-introduction-raw-sql-part7 2 | 3 | -------------------------------------------------------------------------------- /024-Raw-SQL/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /024-Raw-SQL/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/core/asgi.py -------------------------------------------------------------------------------- /024-Raw-SQL/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/core/settings.py -------------------------------------------------------------------------------- /024-Raw-SQL/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/core/urls.py -------------------------------------------------------------------------------- /024-Raw-SQL/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/core/wsgi.py -------------------------------------------------------------------------------- /024-Raw-SQL/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/db.sqlite3 -------------------------------------------------------------------------------- /024-Raw-SQL/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/manage.py -------------------------------------------------------------------------------- /024-Raw-SQL/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /024-Raw-SQL/student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/student/admin.py -------------------------------------------------------------------------------- /024-Raw-SQL/student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/student/apps.py -------------------------------------------------------------------------------- /024-Raw-SQL/student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /024-Raw-SQL/student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /024-Raw-SQL/student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/student/models.py -------------------------------------------------------------------------------- /024-Raw-SQL/student/templates/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/student/templates/output.html -------------------------------------------------------------------------------- /024-Raw-SQL/student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/student/tests.py -------------------------------------------------------------------------------- /024-Raw-SQL/student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/student/urls.py -------------------------------------------------------------------------------- /024-Raw-SQL/student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/024-Raw-SQL/student/views.py -------------------------------------------------------------------------------- /030-Detete-Signals/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/.DS_Store -------------------------------------------------------------------------------- /030-Detete-Signals/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/LICENSE -------------------------------------------------------------------------------- /030-Detete-Signals/README.md: -------------------------------------------------------------------------------- 1 | # YT_Django_ORM_CheckConstraints 2 | 3 | -------------------------------------------------------------------------------- /030-Detete-Signals/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /030-Detete-Signals/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/core/asgi.py -------------------------------------------------------------------------------- /030-Detete-Signals/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/core/settings.py -------------------------------------------------------------------------------- /030-Detete-Signals/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/core/urls.py -------------------------------------------------------------------------------- /030-Detete-Signals/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/core/wsgi.py -------------------------------------------------------------------------------- /030-Detete-Signals/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/db.sqlite3 -------------------------------------------------------------------------------- /030-Detete-Signals/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/manage.py -------------------------------------------------------------------------------- /030-Detete-Signals/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/notes.md -------------------------------------------------------------------------------- /030-Detete-Signals/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/pytest.ini -------------------------------------------------------------------------------- /030-Detete-Signals/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/requirements.txt -------------------------------------------------------------------------------- /030-Detete-Signals/student/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/.DS_Store -------------------------------------------------------------------------------- /030-Detete-Signals/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /030-Detete-Signals/student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/admin.py -------------------------------------------------------------------------------- /030-Detete-Signals/student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/apps.py -------------------------------------------------------------------------------- /030-Detete-Signals/student/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/forms.py -------------------------------------------------------------------------------- /030-Detete-Signals/student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /030-Detete-Signals/student/migrations/0002_student_age10-20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/migrations/0002_student_age10-20.py -------------------------------------------------------------------------------- /030-Detete-Signals/student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /030-Detete-Signals/student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/models.py -------------------------------------------------------------------------------- /030-Detete-Signals/student/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/signals.py -------------------------------------------------------------------------------- /030-Detete-Signals/student/templates/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/templates/output.html -------------------------------------------------------------------------------- /030-Detete-Signals/student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/tests.py -------------------------------------------------------------------------------- /030-Detete-Signals/student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/urls.py -------------------------------------------------------------------------------- /030-Detete-Signals/student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/030-Detete-Signals/student/views.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/README.md -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/logo.svg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/Django-ORM-Mastery-DJ003/HEAD/requirements.txt --------------------------------------------------------------------------------