├── project_1 ├── db.sqlite3 ├── second_app │ ├── urls.py │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── tests.py │ ├── admin.py │ ├── views.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── models.cpython-39.pyc │ └── apps.py ├── first_app │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── admin.py │ ├── tests.py │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ └── urls.py ├── project_1 │ ├── __init__.py │ ├── __pycache__ │ │ ├── urls.cpython-39.pyc │ │ ├── wsgi.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── settings.cpython-39.pyc │ └── views.py └── .vscode │ └── settings.json ├── project_2 ├── db.sqlite3 ├── first_app │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── admin.py │ ├── tests.py │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ └── urls.py └── project_2 │ ├── __init__.py │ ├── __pycache__ │ ├── urls.cpython-39.pyc │ ├── wsgi.cpython-39.pyc │ ├── views.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ └── settings.cpython-39.pyc │ └── views.py ├── project_3 ├── db.sqlite3 ├── first_app │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── admin.py │ ├── tests.py │ ├── urls.py │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ └── apps.py └── project_3 │ ├── __init__.py │ └── __pycache__ │ ├── urls.cpython-39.pyc │ ├── wsgi.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ └── settings.cpython-39.pyc ├── project_4 ├── db.sqlite3 ├── first_app │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── static │ │ ├── css │ │ │ └── index.css │ │ └── images │ │ │ └── bird2.jpeg │ ├── models.py │ ├── admin.py │ ├── tests.py │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ └── urls.py ├── project_4 │ ├── __init__.py │ ├── views.py │ └── __pycache__ │ │ ├── urls.cpython-39.pyc │ │ ├── wsgi.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── settings.cpython-39.pyc ├── static │ ├── bird1.jpeg │ └── bird2.jpeg └── templates │ └── home.html ├── fifth_project ├── db.sqlite3 ├── first_app │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── admin.py │ ├── tests.py │ ├── upload │ │ ├── 2.pdf │ │ └── Abdullah-All-Naim.png │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── templates │ │ └── first_app │ │ │ └── home.html │ └── apps.py └── fifth_project │ ├── __init__.py │ ├── __pycache__ │ ├── urls.cpython-39.pyc │ ├── views.cpython-39.pyc │ ├── wsgi.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ └── settings.cpython-39.pyc │ └── urls.py ├── simple_page_navigation ├── db.sqlite3 ├── navigation │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── admin.py │ ├── tests.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── urls.py │ └── apps.py └── simple_page_navigation │ ├── __init__.py │ ├── views.py │ └── __pycache__ │ ├── urls.cpython-39.pyc │ ├── views.cpython-39.pyc │ ├── wsgi.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ └── settings.cpython-39.pyc ├── eighth_project ├── first_app │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── admin.py │ ├── tests.py │ ├── templates │ │ └── home.html │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ └── apps.py ├── eighth_project │ ├── __init__.py │ └── __pycache__ │ │ ├── urls.cpython-39.pyc │ │ ├── wsgi.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── settings.cpython-39.pyc ├── db.sqlite3 └── .vscode │ └── settings.json ├── seventh_project ├── first_app │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0007_post.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ ├── 0005_friend_me.cpython-39.pyc │ │ │ ├── 0002_bankmanagement.cpython-39.pyc │ │ │ └── 0008_student_teacher.cpython-39.pyc │ ├── tests.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── models.cpython-39.pyc │ └── apps.py ├── seventh_project │ ├── __init__.py │ └── __pycache__ │ │ ├── urls.cpython-39.pyc │ │ ├── wsgi.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── settings.cpython-39.pyc └── db.sqlite3 ├── sixth_project ├── first_app │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── 0002_student_father_name.cpython-39.pyc │ ├── tests.py │ ├── admin.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ └── urls.py ├── sixth_project │ ├── __init__.py │ └── __pycache__ │ │ ├── urls.cpython-39.pyc │ │ ├── wsgi.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── settings.cpython-39.pyc └── db.sqlite3 ├── mamar_bank_part_3 └── mamar_bank │ ├── core │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── admin.py │ ├── tests.py │ ├── static │ │ └── img │ │ │ └── bank.jpg │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ └── views.py │ ├── accounts │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── 0001_initial.cpython-39.pyc │ ├── tests.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── constants.cpython-39.pyc │ ├── apps.py │ ├── constants.py │ └── admin.py │ ├── mamar_bank │ ├── __init__.py │ └── __pycache__ │ │ ├── urls.cpython-39.pyc │ │ ├── wsgi.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── settings.cpython-39.pyc │ ├── transactions │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── tests.py │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── constants.cpython-39.pyc │ └── apps.py │ ├── .gitignore │ └── db.sqlite3 ├── Blog_Project_Part_1 └── blog_project │ ├── author │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── 0001_initial.cpython-39.pyc │ ├── tests.py │ ├── admin.py │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ └── urls.py │ ├── posts │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── 0001_initial.cpython-39.pyc │ ├── tests.py │ ├── admin.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ └── forms.py │ ├── profiles │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── 0001_initial.cpython-39.pyc │ ├── tests.py │ ├── admin.py │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ └── urls.py │ ├── blog_project │ ├── __init__.py │ └── __pycache__ │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── wsgi.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── settings.cpython-39.pyc │ ├── categories │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── tests.py │ ├── admin.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ ├── urls.py │ └── forms.py │ └── db.sqlite3 ├── Blog_Project_Part_2 └── blog_project │ ├── author │ ├── __init__.py │ ├── admin.py │ ├── tests.py │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ └── apps.py │ ├── posts │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── 0001_initial.cpython-39.pyc │ ├── tests.py │ ├── admin.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ └── apps.py │ ├── blog_project │ ├── __init__.py │ └── __pycache__ │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── wsgi.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── settings.cpython-39.pyc │ ├── categories │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── tests.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ ├── urls.py │ └── forms.py │ ├── db.sqlite3 │ └── static │ └── header.jpg ├── Blog_Project_Part_3 └── blog_project │ ├── author │ ├── __init__.py │ ├── admin.py │ ├── tests.py │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ └── apps.py │ ├── posts │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── 0007_comment.cpython-39.pyc │ ├── tests.py │ ├── media │ │ └── uploads │ │ │ ├── Blue-Shirt.jpg │ │ │ ├── Blue-Shirt_4bT2XVs.jpg │ │ │ ├── Blue-Shirt_HGZOaDu.jpg │ │ │ ├── Blue-Shirt_JqD0WuS.jpg │ │ │ ├── Blue-Shirt_cl0AkfR.jpg │ │ │ ├── Blue-Shirt_oZHojf6.jpg │ │ │ ├── Blue-Shirt_oeSBnun.jpg │ │ │ └── Get-Started-With-Django_Watermarked.png │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ └── admin.py │ ├── blog_project │ ├── __init__.py │ └── __pycache__ │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── wsgi.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── settings.cpython-39.pyc │ ├── categories │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── tests.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── apps.py │ ├── urls.py │ └── forms.py │ ├── first_app │ ├── __init__.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── admin.py │ ├── views.py │ └── apps.py │ ├── db.sqlite3 │ ├── static │ └── header.jpg │ └── media │ └── uploads │ └── Blue-Shirt.jpg ├── drf ├── Smart_Care_Part_1 │ └── smart_care │ │ ├── doctor │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ └── 0003_review.cpython-39.pyc │ │ ├── tests.py │ │ ├── views.py │ │ ├── images │ │ │ └── 3.webp │ │ ├── __pycache__ │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ │ └── apps.py │ │ ├── patient │ │ ├── __init__.py │ │ ├── views.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── 0001_initial.cpython-39.pyc │ │ ├── tests.py │ │ ├── images │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ │ ├── __pycache__ │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── views.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ └── serializers.cpython-39.pyc │ │ └── apps.py │ │ ├── service │ │ ├── __init__.py │ │ ├── views.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── 0001_initial.cpython-39.pyc │ │ ├── tests.py │ │ ├── images │ │ │ └── xray.jpg │ │ ├── admin.py │ │ ├── __pycache__ │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── views.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ └── serializers.cpython-39.pyc │ │ └── apps.py │ │ ├── appointment │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── tests.py │ │ ├── views.py │ │ ├── __pycache__ │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ │ └── apps.py │ │ ├── contact_us │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── tests.py │ │ ├── __pycache__ │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── views.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── serializers.cpython-39.pyc │ │ └── apps.py │ │ ├── smart_care │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── wsgi.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── settings.cpython-39.pyc │ │ └── db.sqlite3 ├── Smart_Care_Part_2 │ └── smart_care │ │ ├── doctor │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ └── 0003_review.cpython-39.pyc │ │ ├── tests.py │ │ ├── images │ │ │ ├── 2.jpg │ │ │ └── 3.webp │ │ ├── __pycache__ │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── views.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── serializers.cpython-39.pyc │ │ └── apps.py │ │ ├── patient │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── 0001_initial.cpython-39.pyc │ │ ├── tests.py │ │ ├── images │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ │ ├── __pycache__ │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── views.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ └── serializers.cpython-39.pyc │ │ └── apps.py │ │ ├── service │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── 0001_initial.cpython-39.pyc │ │ ├── tests.py │ │ ├── images │ │ │ └── xray.jpg │ │ ├── admin.py │ │ ├── __pycache__ │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── views.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ └── serializers.cpython-39.pyc │ │ └── apps.py │ │ ├── appointment │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── tests.py │ │ ├── __pycache__ │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── views.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── serializers.cpython-39.pyc │ │ └── apps.py │ │ ├── contact_us │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── tests.py │ │ ├── __pycache__ │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── views.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── serializers.cpython-39.pyc │ │ └── apps.py │ │ ├── smart_care │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── wsgi.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── settings.cpython-39.pyc │ │ └── db.sqlite3 └── Smart_Care_Part_3 │ └── smart_care │ ├── doctor │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── 0003_review.cpython-39.pyc │ ├── tests.py │ ├── images │ │ ├── 2.jpg │ │ └── 3.webp │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── serializers.cpython-39.pyc │ └── apps.py │ ├── patient │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── 0001_initial.cpython-39.pyc │ ├── tests.py │ ├── images │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── serializers.cpython-39.pyc │ └── apps.py │ ├── service │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── 0001_initial.cpython-39.pyc │ ├── tests.py │ ├── images │ │ └── xray.jpg │ ├── admin.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── serializers.cpython-39.pyc │ └── apps.py │ ├── appointment │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── tests.py │ ├── __pycache__ │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── serializers.cpython-39.pyc │ └── apps.py │ ├── contact_us │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── tests.py │ ├── __pycache__ │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── serializers.cpython-39.pyc │ └── apps.py │ ├── smart_care │ ├── __init__.py │ ├── .env │ └── __pycache__ │ │ ├── urls.cpython-39.pyc │ │ ├── wsgi.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ └── settings.cpython-39.pyc │ └── db.sqlite3 └── mamar_bank_Part1_2_Code └── mamar_bank ├── core ├── __init__.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-39.pyc ├── models.py ├── admin.py ├── tests.py ├── static │ └── img │ │ └── bank.jpg ├── __pycache__ │ ├── apps.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── views.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── apps.py └── views.py ├── accounts ├── __init__.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-39.pyc ├── tests.py ├── __pycache__ │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── urls.cpython-39.pyc │ ├── views.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ └── constants.cpython-39.pyc ├── apps.py └── constants.py ├── mamar_bank ├── __init__.py └── __pycache__ │ ├── urls.cpython-39.pyc │ ├── wsgi.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ └── settings.cpython-39.pyc ├── transactions ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── __pycache__ │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── urls.cpython-39.pyc │ ├── views.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ └── constants.cpython-39.pyc └── apps.py └── db.sqlite3 /project_1/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_2/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_3/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_4/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fifth_project/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_1/second_app/urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_1/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_1/project_1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_1/second_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_2/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_2/project_2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_3/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_3/project_3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_4/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_4/project_4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_page_navigation/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eighth_project/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fifth_project/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seventh_project/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sixth_project/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eighth_project/eighth_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fifth_project/fifth_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_1/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_1/second_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_2/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_3/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_4/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seventh_project/seventh_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sixth_project/sixth_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eighth_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fifth_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_page_navigation/navigation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sixth_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/mamar_bank/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/smart_care/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/smart_care/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/.gitignore: -------------------------------------------------------------------------------- 1 | mamar_bank/.env -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_page_navigation/navigation/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_1/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "C_Cpp.errorSquiggles": "enabled" 3 | } 4 | -------------------------------------------------------------------------------- /project_4/first_app/static/css/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | -------------------------------------------------------------------------------- /project_1/first_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /project_2/first_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /project_3/first_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /project_4/first_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /eighth_project/first_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /fifth_project/first_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /project_1/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /project_1/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /project_1/second_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /project_1/second_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /project_2/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /project_2/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /project_3/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /project_3/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /project_4/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /project_4/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /eighth_project/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /eighth_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /fifth_project/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /fifth_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /project_1/second_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /project_1/second_app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /seventh_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /sixth_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /simple_page_navigation/navigation/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /eighth_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/db.sqlite3 -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /seventh_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/db.sqlite3 -------------------------------------------------------------------------------- /simple_page_navigation/navigation/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /simple_page_navigation/navigation/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /sixth_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/db.sqlite3 -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/.env: -------------------------------------------------------------------------------- 1 | EMAIL=phitrondjangotutorials@gmail.com 2 | EMAIL_PASSWORD=wximkwcwrryoeqgd -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /project_4/static/bird1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/static/bird1.jpeg -------------------------------------------------------------------------------- /project_4/static/bird2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/static/bird2.jpeg -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /fifth_project/first_app/upload/2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/upload/2.pdf -------------------------------------------------------------------------------- /project_4/project_4/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | def home(request): 4 | return render(request, 'home.html') -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/db.sqlite3 -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/db.sqlite3 -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/db.sqlite3 -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/db.sqlite3 -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/db.sqlite3 -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/db.sqlite3 -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/db.sqlite3 -------------------------------------------------------------------------------- /project_3/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path, include 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.home), 6 | ] -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/db.sqlite3 -------------------------------------------------------------------------------- /project_4/first_app/static/images/bird2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/static/images/bird2.jpeg -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | def home(request): 4 | return render(request, "home.html") -------------------------------------------------------------------------------- /sixth_project/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | # Register your models here. 4 | admin.site.register(models.Student) -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/static/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/static/header.jpg -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/static/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/static/header.jpg -------------------------------------------------------------------------------- /project_1/first_app/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/first_app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/project_1/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/project_1/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/first_app/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/first_app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/project_2/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/project_2/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/first_app/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/first_app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/project_3/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/project_3/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/project_3/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/project_3/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/first_app/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/first_app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/project_4/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/project_4/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/images/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/images/3.webp -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/images/1.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/images/2.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/images/2.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/images/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/images/3.webp -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/images/1.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/images/2.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/images/2.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/images/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/images/3.webp -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/images/1.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/images/2.jpg -------------------------------------------------------------------------------- /eighth_project/first_app/templates/home.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html'%} 2 | 3 | {% block body %} 4 | 5 |

Home page

6 |

{{my_argument}}

7 | {% endblock %} -------------------------------------------------------------------------------- /fifth_project/first_app/upload/Abdullah-All-Naim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/upload/Abdullah-All-Naim.png -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/static/img/bank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/static/img/bank.jpg -------------------------------------------------------------------------------- /project_1/first_app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/first_app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/first_app/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/project_1/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/second_app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/second_app/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/second_app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/first_app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/first_app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/first_app/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/project_2/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/first_app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/first_app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/first_app/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/first_app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/first_app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/first_app/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/project_4/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/images/xray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/images/xray.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/images/xray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/images/xray.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/images/xray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/images/xray.jpg -------------------------------------------------------------------------------- /eighth_project/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "[python]": { 3 | "editor.defaultFormatter": "ms-python.autopep8" 4 | }, 5 | "python.formatting.provider": "none" 6 | } 7 | -------------------------------------------------------------------------------- /eighth_project/first_app/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /eighth_project/first_app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/first_app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/first_app/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/first_app/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/first_app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/first_app/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/first_app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/project_1/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/project_1/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/second_app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/second_app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/first_app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/project_2/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/project_2/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/first_app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/project_3/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/project_3/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/project_3/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/project_3/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/first_app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/project_4/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/project_4/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/first_app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/first_app/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/first_app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/first_app/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | # Register your models here. 4 | 5 | admin.site.register(models.Author) -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | # Register your models here. 4 | 5 | admin.site.register(models.Post) -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | # Register your models here. 4 | 5 | admin.site.register(models.Post) -------------------------------------------------------------------------------- /eighth_project/first_app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /eighth_project/first_app/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /eighth_project/first_app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /eighth_project/first_app/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/first_app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/first_app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/first_app/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/first_app/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/first_app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/first_app/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/first_app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | # Register your models here. 4 | 5 | admin.site.register(models.Category) -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/media/uploads/Blue-Shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/media/uploads/Blue-Shirt.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Service 3 | # Register your models here. 4 | 5 | admin.site.register(Service) -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Service 3 | # Register your models here. 4 | 5 | admin.site.register(Service) -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Service 3 | # Register your models here. 4 | 5 | admin.site.register(Service) -------------------------------------------------------------------------------- /eighth_project/eighth_project/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/eighth_project/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /eighth_project/eighth_project/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/eighth_project/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /eighth_project/first_app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/fifth_project/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/fifth_project/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/fifth_project/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/fifth_project/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/fifth_project/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/fifth_project/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/first_app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/first_app/templates/first_app/home.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% block title%} Home Page {% endblock%} 3 | {% block content %} Home page {{ block.super }} {%endblock%} -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/static/img/bank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/static/img/bank.jpg -------------------------------------------------------------------------------- /project_2/project_2/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # F:\Phitron\Django Codes\project_2\templates 4 | def index(request): 5 | return render(request, 'index.html') -------------------------------------------------------------------------------- /seventh_project/first_app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/first_app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/first_app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/sixth_project/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/sixth_project/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/sixth_project/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/sixth_project/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from . import models 4 | # Register your models here. 5 | 6 | admin.site.register(models.Profile) -------------------------------------------------------------------------------- /fifth_project/fifth_project/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/fifth_project/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/fifth_project/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/fifth_project/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/seventh_project/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/seventh_project/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/seventh_project/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/seventh_project/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/sixth_project/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/sixth_project/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/sixth_project/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/sixth_project/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /eighth_project/eighth_project/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/eighth_project/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /eighth_project/eighth_project/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/eighth_project/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/first_app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/first_app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_3/first_app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_4/first_app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/navigation/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/navigation/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/navigation/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/navigation/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt.jpg -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'first_app' 7 | -------------------------------------------------------------------------------- /project_1/second_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class SecondAppConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'second_app' 7 | -------------------------------------------------------------------------------- /project_1/second_app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'first_app' 7 | -------------------------------------------------------------------------------- /project_3/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'first_app' 7 | -------------------------------------------------------------------------------- /project_4/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'first_app' 7 | -------------------------------------------------------------------------------- /seventh_project/seventh_project/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/seventh_project/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/seventh_project/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/seventh_project/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/navigation/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /eighth_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'first_app' 7 | -------------------------------------------------------------------------------- /eighth_project/first_app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'first_app' 7 | -------------------------------------------------------------------------------- /fifth_project/first_app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CoreConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'core' 7 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/mamar_bank/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/mamar_bank/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/mamar_bank/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/mamar_bank/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'first_app' 7 | -------------------------------------------------------------------------------- /simple_page_navigation/navigation/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/navigation/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path, include 2 | from . import views 3 | urlpatterns = [ 4 | path('about/', views.about), 5 | path('contact/', views.contact), 6 | ] -------------------------------------------------------------------------------- /sixth_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'first_app' 7 | -------------------------------------------------------------------------------- /sixth_project/first_app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PostsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'posts' 7 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PostsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'posts' 7 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PostsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'posts' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CoreConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'core' 7 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/__pycache__/0007_post.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/__pycache__/0007_post.cpython-39.pyc -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AuthorConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'author' 7 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AuthorConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'author' 7 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AuthorConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'author' 7 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_4bT2XVs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_4bT2XVs.jpg -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_HGZOaDu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_HGZOaDu.jpg -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_JqD0WuS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_JqD0WuS.jpg -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_cl0AkfR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_cl0AkfR.jpg -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_oZHojf6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_oZHojf6.jpg -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_oeSBnun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/media/uploads/Blue-Shirt_oeSBnun.jpg -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/appointment/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class DoctorConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'doctor' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PatientConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'patient' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ServiceConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'service' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/smart_care/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/smart_care/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/smart_care/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/smart_care/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class DoctorConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'doctor' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PatientConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'patient' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ServiceConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'service' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/smart_care/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/smart_care/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/smart_care/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/smart_care/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class DoctorConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'doctor' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PatientConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'patient' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ServiceConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'service' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/smart_care/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/smart_care/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/__pycache__/constants.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/__pycache__/constants.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AccountsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'accounts' 7 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/constants.py: -------------------------------------------------------------------------------- 1 | ACCOUNT_TYPE = ( 2 | ('Savings', 'Savings'), 3 | ('Current', 'Current'), 4 | ) 5 | GENDER_TYPE = ( 6 | ('Male', 'Male'), 7 | ('Female', 'Female'), 8 | ) -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/mamar_bank/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/mamar_bank/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/mamar_bank/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/mamar_bank/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path("courses/", views.courses), 6 | path("about/", views.about), 7 | path("", views.home), 8 | ] -------------------------------------------------------------------------------- /project_4/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path, include 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name = 'home'), 6 | path('about/', views.about, name = 'about'), 7 | ] -------------------------------------------------------------------------------- /project_4/templates/home.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | 3 | {% block content %} 4 | {{block.super}} 5 |

This is home page

6 | Bird Image 1 7 | 8 | {% endblock %} -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/navigation/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class NavigationConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'navigation' 7 | -------------------------------------------------------------------------------- /sixth_project/first_app/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/blog_project/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/blog_project/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/blog_project/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ProfilesConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'profiles' 7 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/blog_project/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/blog_project/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/blog_project/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/blog_project/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/blog_project/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/blog_project/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'first_app' 7 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | # Register your models here. 4 | 5 | admin.site.register(models.Post) 6 | admin.site.register(models.Comment) -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/appointment/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/appointment/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AccountsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'accounts' 7 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/__pycache__/constants.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/__pycache__/constants.cpython-39.pyc -------------------------------------------------------------------------------- /project_2/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | # from first_app.views import home 3 | # from first_app import views 4 | from . import views 5 | 6 | urlpatterns = [ 7 | path('', views.home), 8 | ] 9 | -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/__pycache__/0005_friend_me.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/__pycache__/0005_friend_me.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/simple_page_navigation/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/simple_page_navigation/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/simple_page_navigation/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/blog_project/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/blog_project/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CategoriesConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'categories' 7 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import Post 3 | 4 | class PostForm(forms.ModelForm): 5 | class Meta: 6 | model = Post 7 | fields = '__all__' 8 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/blog_project/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/blog_project/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CategoriesConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'categories' 7 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/blog_project/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/blog_project/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CategoriesConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'categories' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/appointment/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ContactUsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'contact_us' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/smart_care/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/smart_care/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/smart_care/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/smart_care/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ContactUsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'contact_us' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/smart_care/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/smart_care/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/smart_care/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/smart_care/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ContactUsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'contact_us' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/smart_care/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/smart_care/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /fifth_project/fifth_project/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path, include 3 | urlpatterns = [ 4 | path('admin/', admin.site.urls), 5 | path('', include("first_app.urls")), 6 | ] 7 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/constants.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/__pycache__/constants.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/constants.py: -------------------------------------------------------------------------------- 1 | ACCOUNT_TYPE = ( 2 | ('Savings', 'Savings'), 3 | ('Current', 'Current'), 4 | ) 5 | GENDER_TYPE = ( 6 | ('Male', 'Male'), 7 | ('Female', 'Female'), 8 | ) -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /project_1/project_1/views.py: -------------------------------------------------------------------------------- 1 | from django.http import HttpResponse 2 | 3 | 4 | def home(request): 5 | return HttpResponse("This is home page") 6 | def contact(request): 7 | return HttpResponse("This is contact page") -------------------------------------------------------------------------------- /simple_page_navigation/navigation/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/simple_page_navigation/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/simple_page_navigation/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path, include 3 | from . import views 4 | urlpatterns = [ 5 | path('add/', views.add_author, name='add_author') 6 | ] -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path, include 3 | from . import views 4 | urlpatterns = [ 5 | path('add/', views.add_profile, name='add_profile') 6 | ] -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AppointmentConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'appointment' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AppointmentConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'appointment' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AppointmentConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'appointment' 7 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class TransactionsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'transactions' 7 | -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/__pycache__/0002_bankmanagement.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/__pycache__/0002_bankmanagement.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path, include 3 | from . import views 4 | urlpatterns = [ 5 | path('add/', views.add_category, name='add_category') 6 | ] -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path, include 3 | from . import views 4 | urlpatterns = [ 5 | path('add/', views.add_category, name='add_category') 6 | ] -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path, include 3 | from . import views 4 | urlpatterns = [ 5 | path('add/', views.add_category, name='add_category') 6 | ] -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/constants.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/__pycache__/constants.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class TransactionsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'transactions' 7 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | from django.views.generic import TemplateView 3 | # Create your views here. 4 | 5 | class HomeView(TemplateView): 6 | template_name = 'index.html' 7 | -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/__pycache__/0008_student_teacher.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/__pycache__/0008_student_teacher.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/first_app/migrations/__pycache__/0002_student_father_name.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/migrations/__pycache__/0002_student_father_name.cpython-39.pyc -------------------------------------------------------------------------------- /sixth_project/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | urlpatterns = [ 4 | path('', views.home, name="homepage"), 5 | path('delete/', views.delete_student, name="delete_student"), 6 | ] -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import Category 3 | 4 | class CategoryForm(forms.ModelForm): 5 | class Meta: 6 | model = Category 7 | fields = '__all__' 8 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import Category 3 | 4 | class CategoryForm(forms.ModelForm): 5 | class Meta: 6 | model = Category 7 | fields = '__all__' 8 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import Category 3 | 4 | class CategoryForm(forms.ModelForm): 5 | class Meta: 6 | model = Category 7 | fields = '__all__' 8 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/migrations/__pycache__/0007_comment.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/migrations/__pycache__/0007_comment.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/appointment/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/migrations/__pycache__/0003_review.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/migrations/__pycache__/0003_review.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/migrations/__pycache__/0003_review.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/migrations/__pycache__/0003_review.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/migrations/__pycache__/0003_review.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/migrations/__pycache__/0003_review.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | from django.views.generic import TemplateView 3 | # Create your views here. 4 | 5 | class HomeView(TemplateView): 6 | template_name = 'index.html' 7 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import UserBankAccount, UserAddress 3 | # Register your models here. 4 | 5 | admin.site.register(UserBankAccount) 6 | admin.site.register(UserAddress) -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/media/uploads/Get-Started-With-Django_Watermarked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/media/uploads/Get-Started-With-Django_Watermarked.png --------------------------------------------------------------------------------