├── Blog_Project_Part_1 └── blog_project │ ├── author │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── add_author.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── blog_project │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py │ ├── categories │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── add_category.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ ├── posts │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── add_post.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── profiles │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_profile_author.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ ├── 0002_profile_author.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── add_profile.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── templates │ ├── base.html │ └── home.html ├── Blog_Project_Part_2 └── blog_project │ ├── author │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── pass_change.html │ │ ├── profile.html │ │ ├── register.html │ │ └── update_profile.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── blog_project │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py │ ├── categories │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_category_slug.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ ├── 0002_category_slug.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── add_category.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ ├── posts │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── add_post.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── static │ └── header.jpg │ └── templates │ ├── base.html │ └── home.html ├── Blog_Project_Part_3 └── blog_project │ ├── author │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── pass_change.html │ │ ├── profile.html │ │ ├── register.html │ │ └── update_profile.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── blog_project │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py │ ├── categories │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_category_slug.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ ├── 0002_category_slug.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── add_category.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── first_app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py │ ├── manage.py │ ├── media │ └── uploads │ │ └── Blue-Shirt.jpg │ ├── posts │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.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 │ │ │ ├── Create-Your-Own-Blog-With-Django_Watermarked.png │ │ │ ├── Get-Started-With-Django-Part-2-Build-a-User-Management-System_Waterm_TK0sH00.jpg │ │ │ ├── Get-Started-With-Django_Watermarked.png │ │ │ ├── Get-Started-With-Django_Watermarked_DyqMMax.png │ │ │ ├── Get-Started-With-Django_Watermarked_GUlQjTS.png │ │ │ ├── python-django-project-blog-web-application.png │ │ │ ├── python-django-project-blog-web-application_3DvGwtW.png │ │ │ ├── python-django-project-blog-web-application_bjRXCDC.png │ │ │ ├── python-django-project-blog-web-application_enS04tI.png │ │ │ └── python-django-project-blog-web-application_zRUGvQW.png │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_post_image.py │ │ ├── 0003_alter_post_image.py │ │ ├── 0004_alter_post_image.py │ │ ├── 0005_alter_post_image.py │ │ ├── 0006_alter_post_image.py │ │ ├── 0007_comment.py │ │ ├── 0008_alter_comment_email.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ ├── 0002_post_image.cpython-39.pyc │ │ │ ├── 0003_alter_post_image.cpython-39.pyc │ │ │ ├── 0004_alter_post_image.cpython-39.pyc │ │ │ ├── 0005_alter_post_image.cpython-39.pyc │ │ │ ├── 0006_alter_post_image.cpython-39.pyc │ │ │ ├── 0007_comment.cpython-39.pyc │ │ │ ├── 0008_alter_comment_email.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ ├── add_post.html │ │ ├── delete.html │ │ └── post_details.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── static │ └── header.jpg │ └── templates │ ├── base.html │ └── home.html ├── drf ├── Smart_Care_Part_1 │ └── smart_care │ │ ├── appointment │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ └── models.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── contact_us │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializers.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_contactus_options.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_alter_contactus_options.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── db.sqlite3 │ │ ├── doctor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ └── models.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── images │ │ │ └── 3.webp │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_remove_doctor_available_time_doctor_available_time.py │ │ │ ├── 0003_review.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_remove_doctor_available_time_doctor_available_time.cpython-39.pyc │ │ │ │ ├── 0003_review.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── manage.py │ │ ├── patient │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializers.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── images │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_patient_user.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_alter_patient_user.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── service │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializers.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── images │ │ │ └── xray.jpg │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ └── smart_care │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── Smart_Care_Part_2 │ └── smart_care │ │ ├── appointment │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializers.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_appointment_time.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_alter_appointment_time.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── contact_us │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializers.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_contactus_options.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_alter_contactus_options.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── db.sqlite3 │ │ ├── doctor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializers.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── images │ │ │ ├── 2.jpg │ │ │ └── 3.webp │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_remove_doctor_available_time_doctor_available_time.py │ │ │ ├── 0003_review.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_remove_doctor_available_time_doctor_available_time.cpython-39.pyc │ │ │ │ ├── 0003_review.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── manage.py │ │ ├── patient │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializers.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── images │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_patient_user.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_alter_patient_user.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── service │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializers.cpython-39.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── images │ │ │ └── xray.jpg │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ └── smart_care │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py └── Smart_Care_Part_3 │ └── smart_care │ ├── appointment │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── serializers.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_appointment_time.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ ├── 0002_alter_appointment_time.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── admin_email.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── contact_us │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── serializers.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_contactus_options.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ ├── 0002_alter_contactus_options.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── doctor │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── serializers.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── images │ │ ├── 2.jpg │ │ └── 3.webp │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_remove_doctor_available_time_doctor_available_time.py │ │ ├── 0003_review.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ ├── 0002_remove_doctor_available_time_doctor_available_time.cpython-39.pyc │ │ │ ├── 0003_review.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ ├── patient │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── serializers.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── images │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_patient_user.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ ├── 0002_alter_patient_user.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── confirm_email.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── service │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── serializers.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── images │ │ └── xray.jpg │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py │ └── smart_care │ ├── .env │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── settings.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── eighth_project ├── .vscode │ └── settings.json ├── db.sqlite3 ├── eighth_project │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── first_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ ├── base.html │ │ ├── home.html │ │ ├── login.html │ │ ├── passchange.html │ │ ├── profile.html │ │ └── signup.html │ ├── tests.py │ ├── urls.py │ └── views.py └── manage.py ├── fifth_project ├── db.sqlite3 ├── fifth_project │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── first_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── first_app │ │ │ ├── about.html │ │ │ ├── django_form.html │ │ │ ├── form.html │ │ │ └── home.html │ ├── tests.py │ ├── upload │ │ ├── 2.pdf │ │ └── Abdullah-All-Naim.png │ ├── urls.py │ └── views.py ├── manage.py └── templates │ └── base.html ├── mamar_bank_Part1_2_Code └── mamar_bank │ ├── accounts │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── constants.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── accounts │ │ │ ├── profile.html │ │ │ ├── user_login.html │ │ │ └── user_registration.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── core │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── static │ │ └── img │ │ │ └── bank.jpg │ ├── templates │ │ ├── base.html │ │ ├── footer.html │ │ ├── index.html │ │ ├── messages.html │ │ └── navbar.html │ ├── tests.py │ └── views.py │ ├── db.sqlite3 │ ├── mamar_bank │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── transactions │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── constants.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── forms.py │ ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ └── transactions │ │ ├── loan_request.html │ │ ├── transaction_form.html │ │ └── transaction_report.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── mamar_bank_part_3 └── mamar_bank │ ├── .gitignore │ ├── accounts │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── constants.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── accounts │ │ │ ├── profile.html │ │ │ ├── user_login.html │ │ │ └── user_registration.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── core │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── static │ │ └── img │ │ │ └── bank.jpg │ ├── templates │ │ ├── base.html │ │ ├── footer.html │ │ ├── index.html │ │ ├── messages.html │ │ └── navbar.html │ ├── tests.py │ └── views.py │ ├── db.sqlite3 │ ├── mamar_bank │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ ├── requirements.txt │ └── transactions │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── constants.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── forms.py │ ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ └── transactions │ │ ├── admin_email.html │ │ ├── deposite_email.html │ │ ├── loan_email.html │ │ ├── loan_request.html │ │ ├── transaction_form.html │ │ ├── transaction_report.html │ │ └── withdrawal_email.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── project_1 ├── .vscode │ └── settings.json ├── db.sqlite3 ├── first_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── project_1 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py └── second_app │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── models.cpython-39.pyc │ └── urls.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── project_2 ├── db.sqlite3 ├── first_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── first_app │ │ │ └── home.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── project_2 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py └── templates │ └── index.html ├── project_3 ├── db.sqlite3 ├── first_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── home.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py └── project_3 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── settings.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── project_4 ├── db.sqlite3 ├── first_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── static │ │ ├── css │ │ │ └── index.css │ │ └── images │ │ │ └── bird2.jpeg │ ├── templates │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── project_4 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── static │ ├── bird1.jpeg │ └── bird2.jpeg └── templates │ ├── base.html │ ├── contact.html │ └── home.html ├── seventh_project ├── db.sqlite3 ├── first_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── forms.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_bankmanagement.py │ │ ├── 0003_studentinfomodel_teacherinfomodel_and_more.py │ │ ├── 0004_employeemodel_managermodel.py │ │ ├── 0005_friend_me.py │ │ ├── 0006_person_alter_me_options_passport.py │ │ ├── 0007_post.py │ │ ├── 0008_student_teacher.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ ├── 0002_bankmanagement.cpython-39.pyc │ │ │ ├── 0003_studentinfomodel_teacherinfomodel_and_more.cpython-39.pyc │ │ │ ├── 0004_employeemodel_managermodel.cpython-39.pyc │ │ │ ├── 0005_friend_me.cpython-39.pyc │ │ │ ├── 0006_person_alter_me_options_passport.cpython-39.pyc │ │ │ ├── 0007_post.cpython-39.pyc │ │ │ ├── 0008_student_teacher.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ ├── home.html │ │ └── show_data.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py └── seventh_project │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── settings.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── simple_page_navigation ├── db.sqlite3 ├── manage.py ├── navigation │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── templates │ │ └── navigation │ │ │ ├── about.html │ │ │ └── contact.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── simple_page_navigation │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ ├── views.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py └── templates │ └── home.html └── sixth_project ├── db.sqlite3 ├── first_app ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── views.cpython-39.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_student_father_name.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-39.pyc │ │ ├── 0002_student_father_name.cpython-39.pyc │ │ └── __init__.cpython-39.pyc ├── models.py ├── templates │ └── home.html ├── tests.py ├── urls.py └── views.py ├── manage.py └── sixth_project ├── __init__.py ├── __pycache__ ├── __init__.cpython-39.pyc ├── settings.cpython-39.pyc ├── urls.cpython-39.pyc └── wsgi.cpython-39.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /Blog_Project_Part_1/blog_project/author/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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__/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__/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__/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/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/author/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/admin.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/forms.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/migrations/0001_initial.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/templates/add_author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/templates/add_author.html -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/author/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/author/views.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/blog_project/asgi.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/blog_project/settings.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/blog_project/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/blog_project/views.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/blog_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/blog_project/wsgi.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/admin.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/forms.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/migrations/0001_initial.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/templates/add_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/templates/add_category.html -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/categories/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/categories/views.py -------------------------------------------------------------------------------- /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_1/blog_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/manage.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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__/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/__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_1/blog_project/posts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/admin.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/forms.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/migrations/0001_initial.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/templates/add_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/templates/add_post.html -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/posts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/posts/views.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_1/blog_project/profiles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/admin.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/forms.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/migrations/0001_initial.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/templates/add_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/templates/add_profile.html -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/profiles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/profiles/views.py -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/templates/base.html -------------------------------------------------------------------------------- /Blog_Project_Part_1/blog_project/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_1/blog_project/templates/home.html -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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__/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__/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__/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/author/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/forms.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/templates/pass_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/templates/pass_change.html -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/templates/profile.html -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/templates/register.html -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/templates/update_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/templates/update_profile.html -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/author/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/author/views.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/blog_project/asgi.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/blog_project/settings.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/blog_project/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/blog_project/views.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/blog_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/blog_project/wsgi.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/admin.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/forms.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/migrations/0001_initial.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/templates/add_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/templates/add_category.html -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/categories/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/categories/views.py -------------------------------------------------------------------------------- /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_2/blog_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/manage.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_2/blog_project/posts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/admin.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/forms.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/migrations/0001_initial.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/templates/add_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/templates/add_post.html -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/posts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/posts/views.py -------------------------------------------------------------------------------- /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_2/blog_project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/templates/base.html -------------------------------------------------------------------------------- /Blog_Project_Part_2/blog_project/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_2/blog_project/templates/home.html -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/author/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/forms.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/templates/pass_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/templates/pass_change.html -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/templates/profile.html -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/templates/register.html -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/templates/update_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/templates/update_profile.html -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/author/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/author/views.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/blog_project/asgi.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/blog_project/settings.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/blog_project/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/blog_project/views.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/blog_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/blog_project/wsgi.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/admin.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/forms.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/migrations/0001_initial.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/templates/add_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/templates/add_category.html -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/categories/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/categories/views.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/db.sqlite3 -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/first_app/admin.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/first_app/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/first_app/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/first_app/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/first_app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/manage.py -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/admin.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/apps.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/forms.py -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/migrations/0001_initial.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/migrations/0002_post_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/migrations/0002_post_image.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/migrations/0007_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/migrations/0007_comment.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/models.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/templates/add_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/templates/add_post.html -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/templates/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/templates/delete.html -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/templates/post_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/templates/post_details.html -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/tests.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/urls.py -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/posts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/posts/views.py -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/templates/base.html -------------------------------------------------------------------------------- /Blog_Project_Part_3/blog_project/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/Blog_Project_Part_3/blog_project/templates/home.html -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/appointment/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/appointment/apps.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/appointment/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/appointment/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/appointment/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/appointment/tests.py -------------------------------------------------------------------------------- /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/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/apps.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/contact_us/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/contact_us/views.py -------------------------------------------------------------------------------- /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_1/smart_care/doctor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_1/smart_care/doctor/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/apps.py -------------------------------------------------------------------------------- /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/doctor/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/migrations/0003_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/migrations/0003_review.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/doctor/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/doctor/tests.py -------------------------------------------------------------------------------- /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/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/manage.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/apps.py -------------------------------------------------------------------------------- /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_1/smart_care/patient/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/patient/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/patient/tests.py -------------------------------------------------------------------------------- /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/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/apps.py -------------------------------------------------------------------------------- /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_1/smart_care/service/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/service/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/service/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/smart_care/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/smart_care/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/smart_care/asgi.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/smart_care/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/smart_care/settings.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/smart_care/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/smart_care/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_1/smart_care/smart_care/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_1/smart_care/smart_care/wsgi.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/apps.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/serializers.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/appointment/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/appointment/views.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/apps.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/serializers.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/contact_us/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/contact_us/views.py -------------------------------------------------------------------------------- /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_2/smart_care/doctor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_2/smart_care/doctor/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/apps.py -------------------------------------------------------------------------------- /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/doctor/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/migrations/0003_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/migrations/0003_review.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/serializers.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/doctor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/doctor/views.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/manage.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/apps.py -------------------------------------------------------------------------------- /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_2/smart_care/patient/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/serializers.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/patient/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/patient/views.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/apps.py -------------------------------------------------------------------------------- /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_2/smart_care/service/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/serializers.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/service/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/service/views.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/smart_care/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/smart_care/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/smart_care/asgi.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/smart_care/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/smart_care/settings.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/smart_care/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/smart_care/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_2/smart_care/smart_care/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_2/smart_care/smart_care/wsgi.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/apps.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/serializers.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/templates/admin_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/templates/admin_email.html -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/appointment/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/appointment/views.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/apps.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/serializers.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/contact_us/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/contact_us/views.py -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/apps.py -------------------------------------------------------------------------------- /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/doctor/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/migrations/0003_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/migrations/0003_review.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/serializers.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/doctor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/doctor/views.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/manage.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/apps.py -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/serializers.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/templates/confirm_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/templates/confirm_email.html -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/patient/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/patient/views.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/admin.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/apps.py -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/migrations/0001_initial.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/models.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/serializers.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/tests.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/service/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/service/views.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/.env: -------------------------------------------------------------------------------- 1 | EMAIL=phitrondjangotutorials@gmail.com 2 | EMAIL_PASSWORD=wximkwcwrryoeqgd -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/smart_care/asgi.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/smart_care/settings.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/smart_care/urls.py -------------------------------------------------------------------------------- /drf/Smart_Care_Part_3/smart_care/smart_care/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/drf/Smart_Care_Part_3/smart_care/smart_care/wsgi.py -------------------------------------------------------------------------------- /eighth_project/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/.vscode/settings.json -------------------------------------------------------------------------------- /eighth_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/db.sqlite3 -------------------------------------------------------------------------------- /eighth_project/eighth_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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/eighth_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/eighth_project/asgi.py -------------------------------------------------------------------------------- /eighth_project/eighth_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/eighth_project/settings.py -------------------------------------------------------------------------------- /eighth_project/eighth_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/eighth_project/urls.py -------------------------------------------------------------------------------- /eighth_project/eighth_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/eighth_project/wsgi.py -------------------------------------------------------------------------------- /eighth_project/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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__/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__/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__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/__pycache__/urls.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 -------------------------------------------------------------------------------- /eighth_project/first_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/admin.py -------------------------------------------------------------------------------- /eighth_project/first_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/apps.py -------------------------------------------------------------------------------- /eighth_project/first_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/forms.py -------------------------------------------------------------------------------- /eighth_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /eighth_project/first_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/models.py -------------------------------------------------------------------------------- /eighth_project/first_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/templates/base.html -------------------------------------------------------------------------------- /eighth_project/first_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/templates/home.html -------------------------------------------------------------------------------- /eighth_project/first_app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/templates/login.html -------------------------------------------------------------------------------- /eighth_project/first_app/templates/passchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/templates/passchange.html -------------------------------------------------------------------------------- /eighth_project/first_app/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/templates/profile.html -------------------------------------------------------------------------------- /eighth_project/first_app/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/templates/signup.html -------------------------------------------------------------------------------- /eighth_project/first_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/tests.py -------------------------------------------------------------------------------- /eighth_project/first_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/urls.py -------------------------------------------------------------------------------- /eighth_project/first_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/first_app/views.py -------------------------------------------------------------------------------- /eighth_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/eighth_project/manage.py -------------------------------------------------------------------------------- /fifth_project/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fifth_project/fifth_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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/fifth_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/fifth_project/asgi.py -------------------------------------------------------------------------------- /fifth_project/fifth_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/fifth_project/settings.py -------------------------------------------------------------------------------- /fifth_project/fifth_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/fifth_project/urls.py -------------------------------------------------------------------------------- /fifth_project/fifth_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/fifth_project/wsgi.py -------------------------------------------------------------------------------- /fifth_project/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/__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__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/__pycache__/models.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 -------------------------------------------------------------------------------- /fifth_project/first_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/admin.py -------------------------------------------------------------------------------- /fifth_project/first_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/apps.py -------------------------------------------------------------------------------- /fifth_project/first_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/forms.py -------------------------------------------------------------------------------- /fifth_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /fifth_project/first_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/models.py -------------------------------------------------------------------------------- /fifth_project/first_app/templates/first_app/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/templates/first_app/about.html -------------------------------------------------------------------------------- /fifth_project/first_app/templates/first_app/django_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/templates/first_app/django_form.html -------------------------------------------------------------------------------- /fifth_project/first_app/templates/first_app/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/templates/first_app/form.html -------------------------------------------------------------------------------- /fifth_project/first_app/templates/first_app/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/templates/first_app/home.html -------------------------------------------------------------------------------- /fifth_project/first_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/tests.py -------------------------------------------------------------------------------- /fifth_project/first_app/upload/2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/upload/2.pdf -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /fifth_project/first_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/urls.py -------------------------------------------------------------------------------- /fifth_project/first_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/first_app/views.py -------------------------------------------------------------------------------- /fifth_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/manage.py -------------------------------------------------------------------------------- /fifth_project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/fifth_project/templates/base.html -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/admin.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/apps.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/constants.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/forms.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/models.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/tests.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/urls.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/accounts/views.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_Part1_2_Code/mamar_bank/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/admin.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/apps.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/models.py -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/templates/base.html -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/templates/footer.html -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/templates/index.html -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/templates/messages.html -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/templates/navbar.html -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/tests.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/core/views.py -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/asgi.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/settings.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/urls.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/mamar_bank/wsgi.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/manage.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/admin.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/apps.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/constants.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/forms.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/models.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/tests.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/urls.py -------------------------------------------------------------------------------- /mamar_bank_Part1_2_Code/mamar_bank/transactions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_Part1_2_Code/mamar_bank/transactions/views.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/.gitignore: -------------------------------------------------------------------------------- 1 | mamar_bank/.env -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/admin.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/apps.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/constants.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/forms.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/models.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/templates/accounts/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/templates/accounts/profile.html -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/tests.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/urls.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/accounts/views.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/__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__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/__pycache__/models.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 -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/admin.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/apps.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/models.py -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/templates/base.html -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/templates/footer.html -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/templates/index.html -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/templates/messages.html -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/templates/navbar.html -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/tests.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/core/views.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/db.sqlite3 -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/mamar_bank/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/mamar_bank/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/mamar_bank/asgi.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/mamar_bank/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/mamar_bank/settings.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/mamar_bank/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/mamar_bank/urls.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/mamar_bank/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/mamar_bank/wsgi.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/manage.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/requirements.txt -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/admin.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/apps.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/constants.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/forms.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/migrations/0001_initial.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/models.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/tests.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/urls.py -------------------------------------------------------------------------------- /mamar_bank_part_3/mamar_bank/transactions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/mamar_bank_part_3/mamar_bank/transactions/views.py -------------------------------------------------------------------------------- /project_1/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "C_Cpp.errorSquiggles": "enabled" 3 | } 4 | -------------------------------------------------------------------------------- /project_1/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_1/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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__/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__/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__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/__pycache__/urls.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/first_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/admin.py -------------------------------------------------------------------------------- /project_1/first_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/apps.py -------------------------------------------------------------------------------- /project_1/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_1/first_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/models.py -------------------------------------------------------------------------------- /project_1/first_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/tests.py -------------------------------------------------------------------------------- /project_1/first_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/urls.py -------------------------------------------------------------------------------- /project_1/first_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/first_app/views.py -------------------------------------------------------------------------------- /project_1/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/manage.py -------------------------------------------------------------------------------- /project_1/project_1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/__pycache__/views.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_1/project_1/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/asgi.py -------------------------------------------------------------------------------- /project_1/project_1/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/settings.py -------------------------------------------------------------------------------- /project_1/project_1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/urls.py -------------------------------------------------------------------------------- /project_1/project_1/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/views.py -------------------------------------------------------------------------------- /project_1/project_1/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/project_1/wsgi.py -------------------------------------------------------------------------------- /project_1/second_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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__/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__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/__pycache__/models.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_1/second_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/admin.py -------------------------------------------------------------------------------- /project_1/second_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/apps.py -------------------------------------------------------------------------------- /project_1/second_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_1/second_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/models.py -------------------------------------------------------------------------------- /project_1/second_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_1/second_app/tests.py -------------------------------------------------------------------------------- /project_1/second_app/urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_1/second_app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /project_2/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_2/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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__/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__/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__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/__pycache__/urls.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/first_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/admin.py -------------------------------------------------------------------------------- /project_2/first_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/apps.py -------------------------------------------------------------------------------- /project_2/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_2/first_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/models.py -------------------------------------------------------------------------------- /project_2/first_app/templates/first_app/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/templates/first_app/home.html -------------------------------------------------------------------------------- /project_2/first_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/tests.py -------------------------------------------------------------------------------- /project_2/first_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/urls.py -------------------------------------------------------------------------------- /project_2/first_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/first_app/views.py -------------------------------------------------------------------------------- /project_2/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/manage.py -------------------------------------------------------------------------------- /project_2/project_2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/__pycache__/views.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_2/project_2/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/asgi.py -------------------------------------------------------------------------------- /project_2/project_2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/settings.py -------------------------------------------------------------------------------- /project_2/project_2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/urls.py -------------------------------------------------------------------------------- /project_2/project_2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/views.py -------------------------------------------------------------------------------- /project_2/project_2/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/project_2/wsgi.py -------------------------------------------------------------------------------- /project_2/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_2/templates/index.html -------------------------------------------------------------------------------- /project_3/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_3/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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__/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__/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__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/__pycache__/urls.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_3/first_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/admin.py -------------------------------------------------------------------------------- /project_3/first_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/apps.py -------------------------------------------------------------------------------- /project_3/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_3/first_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/models.py -------------------------------------------------------------------------------- /project_3/first_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/templates/home.html -------------------------------------------------------------------------------- /project_3/first_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/tests.py -------------------------------------------------------------------------------- /project_3/first_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/urls.py -------------------------------------------------------------------------------- /project_3/first_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/first_app/views.py -------------------------------------------------------------------------------- /project_3/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/manage.py -------------------------------------------------------------------------------- /project_3/project_3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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_3/project_3/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/project_3/asgi.py -------------------------------------------------------------------------------- /project_3/project_3/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/project_3/settings.py -------------------------------------------------------------------------------- /project_3/project_3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/project_3/urls.py -------------------------------------------------------------------------------- /project_3/project_3/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_3/project_3/wsgi.py -------------------------------------------------------------------------------- /project_4/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_4/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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__/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__/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__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/__pycache__/urls.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/first_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/admin.py -------------------------------------------------------------------------------- /project_4/first_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/apps.py -------------------------------------------------------------------------------- /project_4/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /project_4/first_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/models.py -------------------------------------------------------------------------------- /project_4/first_app/static/css/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } -------------------------------------------------------------------------------- /project_4/first_app/static/images/bird2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/static/images/bird2.jpeg -------------------------------------------------------------------------------- /project_4/first_app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/templates/index.html -------------------------------------------------------------------------------- /project_4/first_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/tests.py -------------------------------------------------------------------------------- /project_4/first_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/urls.py -------------------------------------------------------------------------------- /project_4/first_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/first_app/views.py -------------------------------------------------------------------------------- /project_4/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/manage.py -------------------------------------------------------------------------------- /project_4/project_4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/__pycache__/views.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 -------------------------------------------------------------------------------- /project_4/project_4/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/asgi.py -------------------------------------------------------------------------------- /project_4/project_4/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/settings.py -------------------------------------------------------------------------------- /project_4/project_4/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/urls.py -------------------------------------------------------------------------------- /project_4/project_4/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/views.py -------------------------------------------------------------------------------- /project_4/project_4/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/project_4/wsgi.py -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /project_4/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/templates/base.html -------------------------------------------------------------------------------- /project_4/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/templates/contact.html -------------------------------------------------------------------------------- /project_4/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/project_4/templates/home.html -------------------------------------------------------------------------------- /seventh_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/db.sqlite3 -------------------------------------------------------------------------------- /seventh_project/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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__/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__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/__pycache__/models.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 -------------------------------------------------------------------------------- /seventh_project/first_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/admin.py -------------------------------------------------------------------------------- /seventh_project/first_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/apps.py -------------------------------------------------------------------------------- /seventh_project/first_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/forms.py -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/0002_bankmanagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/0002_bankmanagement.py -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/0004_employeemodel_managermodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/0004_employeemodel_managermodel.py -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/0005_friend_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/0005_friend_me.py -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/0007_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/0007_post.py -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/0008_student_teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/migrations/0008_student_teacher.py -------------------------------------------------------------------------------- /seventh_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seventh_project/first_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/models.py -------------------------------------------------------------------------------- /seventh_project/first_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/templates/home.html -------------------------------------------------------------------------------- /seventh_project/first_app/templates/show_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/templates/show_data.html -------------------------------------------------------------------------------- /seventh_project/first_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/tests.py -------------------------------------------------------------------------------- /seventh_project/first_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/urls.py -------------------------------------------------------------------------------- /seventh_project/first_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/first_app/views.py -------------------------------------------------------------------------------- /seventh_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/manage.py -------------------------------------------------------------------------------- /seventh_project/seventh_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /seventh_project/seventh_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/seventh_project/asgi.py -------------------------------------------------------------------------------- /seventh_project/seventh_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/seventh_project/settings.py -------------------------------------------------------------------------------- /seventh_project/seventh_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/seventh_project/urls.py -------------------------------------------------------------------------------- /seventh_project/seventh_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/seventh_project/seventh_project/wsgi.py -------------------------------------------------------------------------------- /simple_page_navigation/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_page_navigation/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/manage.py -------------------------------------------------------------------------------- /simple_page_navigation/navigation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/__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__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/__pycache__/models.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 -------------------------------------------------------------------------------- /simple_page_navigation/navigation/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/admin.py -------------------------------------------------------------------------------- /simple_page_navigation/navigation/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/apps.py -------------------------------------------------------------------------------- /simple_page_navigation/navigation/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_page_navigation/navigation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/models.py -------------------------------------------------------------------------------- /simple_page_navigation/navigation/templates/navigation/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/templates/navigation/about.html -------------------------------------------------------------------------------- /simple_page_navigation/navigation/templates/navigation/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/templates/navigation/contact.html -------------------------------------------------------------------------------- /simple_page_navigation/navigation/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/tests.py -------------------------------------------------------------------------------- /simple_page_navigation/navigation/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/urls.py -------------------------------------------------------------------------------- /simple_page_navigation/navigation/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/navigation/views.py -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/simple_page_navigation/asgi.py -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/simple_page_navigation/settings.py -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/simple_page_navigation/urls.py -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/simple_page_navigation/views.py -------------------------------------------------------------------------------- /simple_page_navigation/simple_page_navigation/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/simple_page_navigation/wsgi.py -------------------------------------------------------------------------------- /simple_page_navigation/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/simple_page_navigation/templates/home.html -------------------------------------------------------------------------------- /sixth_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/db.sqlite3 -------------------------------------------------------------------------------- /sixth_project/first_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/__pycache__/models.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 -------------------------------------------------------------------------------- /sixth_project/first_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/admin.py -------------------------------------------------------------------------------- /sixth_project/first_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/apps.py -------------------------------------------------------------------------------- /sixth_project/first_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /sixth_project/first_app/migrations/0002_student_father_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/migrations/0002_student_father_name.py -------------------------------------------------------------------------------- /sixth_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /sixth_project/first_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/models.py -------------------------------------------------------------------------------- /sixth_project/first_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/templates/home.html -------------------------------------------------------------------------------- /sixth_project/first_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/tests.py -------------------------------------------------------------------------------- /sixth_project/first_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/urls.py -------------------------------------------------------------------------------- /sixth_project/first_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/first_app/views.py -------------------------------------------------------------------------------- /sixth_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/manage.py -------------------------------------------------------------------------------- /sixth_project/sixth_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /sixth_project/sixth_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/sixth_project/asgi.py -------------------------------------------------------------------------------- /sixth_project/sixth_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/sixth_project/settings.py -------------------------------------------------------------------------------- /sixth_project/sixth_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/sixth_project/urls.py -------------------------------------------------------------------------------- /sixth_project/sixth_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahallnaim/Django-Courses/HEAD/sixth_project/sixth_project/wsgi.py --------------------------------------------------------------------------------