├── .prettierignore ├── Capstone ├── 1_Introduction_to_capstone │ └── Content │ │ └── Readme.md ├── 2_Basics_of_arike │ └── Content │ │ └── Readme.md ├── 3_User_Stories │ └── Content │ │ └── Readme.md ├── 4_Data_model │ └── Content │ │ └── Readme.md ├── 5_Design_reference_and_notes │ └── Content │ │ └── Readme.md ├── 6_Intro_to_MVP │ └── Content │ │ └── Readme.md ├── 7_FAQ │ └── Content │ │ └── Readme.md └── 8_Feature_checklist │ └── Content.md ├── LICENSE.md ├── Level_00 ├── 1_notes on_python │ └── Content │ │ └── Readme.md ├── 2_a_Django_and_Tailwind │ └── Content │ │ └── Readme.md └── Readme.md ├── Level_01 ├── 1_installing_git.md │ └── Content │ │ └── Readme.md ├── 2_command_line_tools │ └── Content │ │ └── Readme.md ├── 3_installing_vs_code │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 4_introduction_to_git │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 5_prerequisites_for_github │ └── Script │ │ └── Readme.md ├── 6_introduction_to_github │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── Milestone │ └── Readme.md ├── Optional │ └── What_is_SAAS │ │ └── Readme.md └── Readme.md ├── Level_02 ├── 10_inheritance │ └── Content │ │ └── Readme.md ├── 11_encapsulation │ └── Content │ │ └── Readme.md ├── 12_operator_overloading │ └── Content │ │ └── Readme.md ├── 1_setting_up_dev_env_for_python │ └── Content │ │ └── Readme.md ├── 2_running_python │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 3_hello_world │ └── Content │ │ └── Readme.md ├── 4_variables_and_datatypes │ └── Content │ │ ├── Questions.md │ │ └── Readme.md ├── 5_prettier_code_with_blocks │ └── Content │ │ ├── Questions.md │ │ └── Readme.md ├── 6_deep_dive_into_data_structures │ └── Content │ │ ├── Questions.md │ │ └── Readme.md ├── 7_iterations_and_exception_handling │ └── Content │ │ ├── Questions.md │ │ └── Readme.md ├── 8_recursive_functions │ └── Content │ │ ├── Question.md │ │ └── Readme.md ├── 9_introduction_to_OOP │ └── Content │ │ └── Readme.md ├── Milestone │ └── Readme.md └── Optional │ └── tradeoffs_in_programming │ └── Content.md ├── Level_03 ├── 1_lets_catch_up │ └── Content │ │ └── Readme.md ├── 2_html_refresher │ └── Content │ │ └── Readme.md ├── 3_forms_in_html │ ├── Content │ │ └── Readme.md │ └── Script │ │ ├── Readme.md │ │ └── test.html ├── 4_styling_webpages │ └── Readme.md ├── 5_create_our_first_server │ └── Script │ │ └── Readme.md ├── 6_dynamic_html_content │ └── Script │ │ ├── Readme.md │ │ └── http_server.py ├── 7_dynamic_routing │ └── Script │ │ └── Readme.md └── Milestone │ └── Readme.md ├── Level_04 ├── 1_Intro_to_pip │ └── Readme.md ├── 2_using_virtualenvs │ └── Readme.md ├── 3_why_web_frameworks │ └── Readme.md ├── 4_baby_steps_in_django │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 5_Views_in_Django │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 6_Django_Templates │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 7_Forms_in_Django │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── Milestone │ └── Readme.md └── Readme.md ├── Level_05 ├── 1_Intro_to_databases │ └── Content │ │ └── Readme.md ├── 2_Django_Apps │ └── Content │ │ └── Readme.md ├── 3_Models_in_Depth │ └── Content │ │ └── Readme.md ├── 4_MIgrations_in_Django │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 5_Introduction_to_ORM │ └── Script │ │ └── Readme.md ├── 6_Soft_Deletion │ └── Script │ │ └── Readme.md ├── 7_Table_Relationships │ └── Content │ │ └── Readme.md ├── 8_Django_Admin │ └── Script │ │ └── Readme.md ├── Milestone │ └── Readme.md └── Readme.md ├── Level_06 ├── 1_A_Bit_of_History │ └── Content │ │ └── Readme.md ├── 2_Class_based_views │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 3_CSRF_Tokens │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 4_Create_Views_and_Forms │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 5_Detail_views │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 6_Sessions_and_authentication │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 7_Authorising_tasks │ └── Script │ │ └── Readme.md ├── Milestone │ ├── Help │ │ └── Readme.md │ └── Readme.md └── Readme.md ├── Level_07 ├── 1_what_is_REST │ └── Content │ │ └── Readme.md ├── 2_Installing_postman │ └── Content │ │ └── Readme.md ├── 3_API_with_Plain_Django │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 4_Getting_Started_with_DRF │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 5_Generic_Views_with_DRF │ └── Script │ │ ├── Content │ │ └── Readme.md │ │ └── Readme.md ├── 6_How_Generic_views_work │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 7_Authorisation_in_DRF │ └── Script │ │ ├── Content │ │ └── Readme.md │ │ └── Readme.md ├── 8_Filters_in_DRF │ └── Script │ │ └── Readme.md ├── 9_Intro_to_UUID │ └── Readme.md ├── Milestone │ ├── Help │ │ └── Readme.md │ └── Readme.md └── Readme.md ├── Level_08 ├── 1_request_response_cycle │ ├── Content │ │ └── Readme.md │ └── Script │ │ └── Readme.md ├── 2_template_blocks │ └── Content │ │ └── Readme.md ├── 2a_static_file_handling │ └── Content │ │ └── Readme.md ├── 3_Advanced_Databases │ ├── Content │ │ └── Readme.md │ └── assets │ │ ├── ER Diagram User Task Tag.png │ │ └── ER Diagram User Task.png ├── 4_ORM_Capabilities │ └── Content │ │ └── Readme.md ├── 5_Background_Processing_basics │ ├── Script │ │ └── Readme.md │ └── content │ │ └── Readme.md ├── Milestone │ ├── Help │ │ └── Readme.md │ └── Readme.md ├── Optional │ └── 1_caching_in_django │ │ └── Readme.md └── Readme.md ├── Level_09 ├── 1_why_unit_testing │ └── Content │ │ └── Readme.md ├── 2_unit_testing_python │ └── Content │ │ └── Readme.md ├── 3_unit_testing_django │ └── Content │ │ └── Readme.md ├── 4_Test Pipeline │ └── Content │ │ └── Readme.md ├── 5_closing_notes │ └── Content │ │ └── Readme.md ├── Milestone │ └── Readme.md └── Readme.md ├── Level_10 ├── 1_Why_Deployment │ └── content │ │ └── Readme.md ├── 2_Freezing_Requirements │ └── content │ │ └── Readme.md ├── 3_Static_and_Dynamic_Files │ └── content │ │ └── Readme.md ├── 4_Deploying_to_heroku │ └── content │ │ └── Readme.md ├── 5_Standard_boilerplates │ ├── Script1 │ │ └── Readme.md │ ├── Script2 │ │ └── Readme.md │ └── content │ │ └── Readme.md ├── Capstone │ └── Readme.md ├── Milestone │ └── Readme.md └── Readme.md ├── README.md └── _config.yml /.prettierignore: -------------------------------------------------------------------------------- 1 | Level_8/2_template_blocks/Content/Readme.md -------------------------------------------------------------------------------- /Capstone/1_Introduction_to_capstone/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Capstone/1_Introduction_to_capstone/Content/Readme.md -------------------------------------------------------------------------------- /Capstone/2_Basics_of_arike/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Capstone/2_Basics_of_arike/Content/Readme.md -------------------------------------------------------------------------------- /Capstone/3_User_Stories/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Capstone/3_User_Stories/Content/Readme.md -------------------------------------------------------------------------------- /Capstone/4_Data_model/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Capstone/4_Data_model/Content/Readme.md -------------------------------------------------------------------------------- /Capstone/5_Design_reference_and_notes/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Capstone/5_Design_reference_and_notes/Content/Readme.md -------------------------------------------------------------------------------- /Capstone/6_Intro_to_MVP/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Capstone/6_Intro_to_MVP/Content/Readme.md -------------------------------------------------------------------------------- /Capstone/7_FAQ/Content/Readme.md: -------------------------------------------------------------------------------- 1 | ### FAQ -------------------------------------------------------------------------------- /Capstone/8_Feature_checklist/Content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Capstone/8_Feature_checklist/Content.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Level_00/1_notes on_python/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_00/1_notes on_python/Content/Readme.md -------------------------------------------------------------------------------- /Level_00/2_a_Django_and_Tailwind/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_00/2_a_Django_and_Tailwind/Content/Readme.md -------------------------------------------------------------------------------- /Level_00/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_00/Readme.md -------------------------------------------------------------------------------- /Level_01/1_installing_git.md/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/1_installing_git.md/Content/Readme.md -------------------------------------------------------------------------------- /Level_01/2_command_line_tools/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/2_command_line_tools/Content/Readme.md -------------------------------------------------------------------------------- /Level_01/3_installing_vs_code/Content/Readme.md: -------------------------------------------------------------------------------- 1 | Refered from 2 | -------------------------------------------------------------------------------- /Level_01/3_installing_vs_code/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/3_installing_vs_code/Script/Readme.md -------------------------------------------------------------------------------- /Level_01/4_introduction_to_git/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/4_introduction_to_git/Content/Readme.md -------------------------------------------------------------------------------- /Level_01/4_introduction_to_git/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/4_introduction_to_git/Script/Readme.md -------------------------------------------------------------------------------- /Level_01/5_prerequisites_for_github/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/5_prerequisites_for_github/Script/Readme.md -------------------------------------------------------------------------------- /Level_01/6_introduction_to_github/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/6_introduction_to_github/Content/Readme.md -------------------------------------------------------------------------------- /Level_01/6_introduction_to_github/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/6_introduction_to_github/Script/Readme.md -------------------------------------------------------------------------------- /Level_01/Milestone/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/Milestone/Readme.md -------------------------------------------------------------------------------- /Level_01/Optional/What_is_SAAS/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/Optional/What_is_SAAS/Readme.md -------------------------------------------------------------------------------- /Level_01/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_01/Readme.md -------------------------------------------------------------------------------- /Level_02/10_inheritance/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/10_inheritance/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/11_encapsulation/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/11_encapsulation/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/12_operator_overloading/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/12_operator_overloading/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/1_setting_up_dev_env_for_python/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/1_setting_up_dev_env_for_python/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/2_running_python/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/2_running_python/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/2_running_python/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/2_running_python/Script/Readme.md -------------------------------------------------------------------------------- /Level_02/3_hello_world/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/3_hello_world/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/4_variables_and_datatypes/Content/Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/4_variables_and_datatypes/Content/Questions.md -------------------------------------------------------------------------------- /Level_02/4_variables_and_datatypes/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/4_variables_and_datatypes/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/5_prettier_code_with_blocks/Content/Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/5_prettier_code_with_blocks/Content/Questions.md -------------------------------------------------------------------------------- /Level_02/5_prettier_code_with_blocks/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/5_prettier_code_with_blocks/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/6_deep_dive_into_data_structures/Content/Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/6_deep_dive_into_data_structures/Content/Questions.md -------------------------------------------------------------------------------- /Level_02/6_deep_dive_into_data_structures/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/6_deep_dive_into_data_structures/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/7_iterations_and_exception_handling/Content/Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/7_iterations_and_exception_handling/Content/Questions.md -------------------------------------------------------------------------------- /Level_02/7_iterations_and_exception_handling/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/7_iterations_and_exception_handling/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/8_recursive_functions/Content/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/8_recursive_functions/Content/Question.md -------------------------------------------------------------------------------- /Level_02/8_recursive_functions/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/8_recursive_functions/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/9_introduction_to_OOP/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/9_introduction_to_OOP/Content/Readme.md -------------------------------------------------------------------------------- /Level_02/Milestone/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/Milestone/Readme.md -------------------------------------------------------------------------------- /Level_02/Optional/tradeoffs_in_programming/Content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_02/Optional/tradeoffs_in_programming/Content.md -------------------------------------------------------------------------------- /Level_03/1_lets_catch_up/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/1_lets_catch_up/Content/Readme.md -------------------------------------------------------------------------------- /Level_03/2_html_refresher/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/2_html_refresher/Content/Readme.md -------------------------------------------------------------------------------- /Level_03/3_forms_in_html/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/3_forms_in_html/Content/Readme.md -------------------------------------------------------------------------------- /Level_03/3_forms_in_html/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/3_forms_in_html/Script/Readme.md -------------------------------------------------------------------------------- /Level_03/3_forms_in_html/Script/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/3_forms_in_html/Script/test.html -------------------------------------------------------------------------------- /Level_03/4_styling_webpages/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/4_styling_webpages/Readme.md -------------------------------------------------------------------------------- /Level_03/5_create_our_first_server/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/5_create_our_first_server/Script/Readme.md -------------------------------------------------------------------------------- /Level_03/6_dynamic_html_content/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/6_dynamic_html_content/Script/Readme.md -------------------------------------------------------------------------------- /Level_03/6_dynamic_html_content/Script/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/6_dynamic_html_content/Script/http_server.py -------------------------------------------------------------------------------- /Level_03/7_dynamic_routing/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/7_dynamic_routing/Script/Readme.md -------------------------------------------------------------------------------- /Level_03/Milestone/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_03/Milestone/Readme.md -------------------------------------------------------------------------------- /Level_04/1_Intro_to_pip/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_04/1_Intro_to_pip/Readme.md -------------------------------------------------------------------------------- /Level_04/2_using_virtualenvs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_04/2_using_virtualenvs/Readme.md -------------------------------------------------------------------------------- /Level_04/3_why_web_frameworks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_04/3_why_web_frameworks/Readme.md -------------------------------------------------------------------------------- /Level_04/4_baby_steps_in_django/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_04/4_baby_steps_in_django/Content/Readme.md -------------------------------------------------------------------------------- /Level_04/4_baby_steps_in_django/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_04/4_baby_steps_in_django/Script/Readme.md -------------------------------------------------------------------------------- /Level_04/5_Views_in_Django/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_04/5_Views_in_Django/Content/Readme.md -------------------------------------------------------------------------------- /Level_04/5_Views_in_Django/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_04/5_Views_in_Django/Script/Readme.md -------------------------------------------------------------------------------- /Level_04/6_Django_Templates/Content/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_04/6_Django_Templates/Content/Readme.md -------------------------------------------------------------------------------- /Level_04/6_Django_Templates/Script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DjangoForAll/Django-Course/HEAD/Level_04/6_Django_Templates/Script/Readme.md -------------------------------------------------------------------------------- /Level_04/7_Forms_in_Django/Content/Readme.md: -------------------------------------------------------------------------------- 1 |