├── Backend(Python & Django) Notes.pdf ├── README.md ├── Section 1 - Course Introduction ├── DJANGO_COURSE_1.xx │ ├── Advanced_Django_CBV │ │ └── advcbv │ │ │ ├── advcbv │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── settings.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── wsgi.cpython-35.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── basic_app │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── views.cpython-35.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20170318_0000.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ │ │ ├── 0002_auto_20170318_0000.cpython-35.pyc │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── basic_app │ │ │ │ │ ├── basic_app_base.html │ │ │ │ │ ├── school_confirm_delete.html │ │ │ │ │ ├── school_detail.html │ │ │ │ │ ├── school_form.html │ │ │ │ │ └── school_list.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── manage.py │ │ │ └── templates │ │ │ ├── base.html │ │ │ └── index.html │ ├── Blog_Clone_Project │ │ └── blog_project │ │ │ ├── .gitignore │ │ │ ├── blog │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_comment.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ └── blog.css │ │ │ │ └── js │ │ │ │ │ └── blog.js │ │ │ ├── templates │ │ │ │ ├── blog │ │ │ │ │ ├── about.html │ │ │ │ │ ├── base.html │ │ │ │ │ ├── comment_form.html │ │ │ │ │ ├── post_confirm_delete.html │ │ │ │ │ ├── post_detail.html │ │ │ │ │ ├── post_draft_list.html │ │ │ │ │ ├── post_form.html │ │ │ │ │ └── post_list.html │ │ │ │ └── registration │ │ │ │ │ └── login.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── mysite │ │ │ ├── __init__.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ └── runtime.txt │ ├── Bootstrap │ │ ├── Boostrap_Project_Solutions │ │ │ ├── Boostrap_solution_main.html │ │ │ └── Bootstrap_solution_signup.html │ │ ├── Bootstrap_Project_Main.html │ │ ├── Bootstrap_Project_Signup.html │ │ ├── Part1_Buttons.html │ │ ├── Part2_Forms.html │ │ ├── Part3_Navbar.html │ │ └── Part4_Grids.html │ ├── CSS_Level_One │ │ ├── CSS_Level_One_Assessment.css │ │ ├── CSS_Level_One_Assessment.html │ │ ├── CSS_Level_One_Test_Solutions.css │ │ ├── Part1.html │ │ ├── Part1_master.css │ │ ├── Part2.html │ │ ├── Part2_master.css │ │ ├── Part3.html │ │ ├── Part3_master.css │ │ ├── Part4_Inspect_Elements │ │ ├── Part5.html │ │ └── Part5_master.css │ ├── CSS_Level_Two │ │ ├── CSS_Level_Two_Spectrum.css │ │ ├── CSS_Level_Two_Spectrum.html │ │ ├── Part1_Fonts.css │ │ ├── Part1_Fonts.html │ │ ├── Part2_Box_Models.css │ │ └── Part2_Box_Models.html │ ├── Capstone_Project_One │ │ ├── Landing_Page.html │ │ ├── landing.css │ │ └── thankyou.html │ ├── Command_Line_Crash_Course │ │ ├── Mac_and_Linux.txt │ │ └── Windows.txt │ ├── Django_Level_Five │ │ └── learning_users │ │ │ ├── basic_app │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ ├── forms.cpython-35.pyc │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── views.cpython-35.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20170307_0415.py │ │ │ │ ├── 0003_auto_20170307_0633.py │ │ │ │ ├── 0004_auto_20170307_0647.py │ │ │ │ ├── 0005_auto_20170307_0657.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ │ │ ├── 0002_auto_20170307_0415.cpython-35.pyc │ │ │ │ │ ├── 0003_auto_20170307_0633.cpython-35.pyc │ │ │ │ │ ├── 0004_auto_20170307_0647.cpython-35.pyc │ │ │ │ │ ├── 0005_auto_20170307_0657.cpython-35.pyc │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── learning_users │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── settings.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── wsgi.cpython-35.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── manage.py │ │ │ └── templates │ │ │ └── basic_app │ │ │ ├── base.html │ │ │ ├── index.html │ │ │ ├── login.html │ │ │ └── registration.html │ ├── Django_Level_Four │ │ └── learning_templates │ │ │ ├── basic_app │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── views.cpython-35.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── learning_templates │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── settings.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── wsgi.cpython-35.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── manage.py │ │ │ └── templates │ │ │ └── basic_app │ │ │ ├── base.html │ │ │ ├── index.html │ │ │ ├── other.html │ │ │ └── relative_url_templates.html │ ├── Django_Level_One │ │ ├── ProTwo │ │ │ ├── ProTwo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ │ ├── settings.cpython-35.pyc │ │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ │ └── wsgi.cpython-35.pyc │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── appTwo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ │ └── views.cpython-35.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── manage.py │ │ │ └── templates │ │ │ │ └── appTwo │ │ │ │ └── help.html │ │ └── first_project │ │ │ ├── db.sqlite3 │ │ │ ├── first_app │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── views.cpython-35.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── first_project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── settings.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── wsgi.cpython-35.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── manage.py │ │ │ ├── static │ │ │ ├── css │ │ │ │ └── mystyle.css │ │ │ └── images │ │ │ │ └── djangoguitar.jpg │ │ │ └── templates │ │ │ └── first_app │ │ │ └── index.html │ ├── Django_Level_Three │ │ ├── ProTwo │ │ │ ├── ProTwo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ │ ├── settings.cpython-35.pyc │ │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ │ └── wsgi.cpython-35.pyc │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── appTwo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ │ ├── forms.cpython-35.pyc │ │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ │ └── views.cpython-35.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── forms.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── manage.py │ │ │ ├── populate_users.py │ │ │ └── templates │ │ │ │ └── appTwo │ │ │ │ ├── index.html │ │ │ │ └── users.html │ │ └── basicforms │ │ │ ├── basicapp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ ├── forms.cpython-35.pyc │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ └── views.cpython-35.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ │ ├── basicforms │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── settings.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── wsgi.cpython-35.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── db.sqlite3 │ │ │ ├── manage.py │ │ │ └── templates │ │ │ └── basicapp │ │ │ ├── form_page.html │ │ │ └── index.html │ ├── Django_Level_Two │ │ ├── ProTwo │ │ │ ├── ProTwo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ │ ├── settings.cpython-35.pyc │ │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ │ └── wsgi.cpython-35.pyc │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── appTwo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ │ └── views.cpython-35.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── manage.py │ │ │ ├── populate_users.py │ │ │ └── templates │ │ │ │ └── appTwo │ │ │ │ ├── index.html │ │ │ │ └── users.html │ │ └── first_project │ │ │ ├── db.sqlite3 │ │ │ ├── first_app │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── views.cpython-35.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20170204_0823.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ │ │ ├── 0002_auto_20170204_0823.cpython-35.pyc │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── first_project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── settings.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── wsgi.cpython-35.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── manage.py │ │ │ ├── populate_first_app.py │ │ │ ├── static │ │ │ ├── css │ │ │ │ └── mystyle.css │ │ │ └── images │ │ │ │ └── djangoguitar.jpg │ │ │ └── templates │ │ │ └── first_app │ │ │ ├── index.html │ │ │ └── original_index.html │ ├── Document_Object_Model │ │ ├── Part1_Color_Changer.js │ │ ├── Part1_MainPage.html │ │ ├── Part2_Content.html │ │ ├── Part2_Interact.js │ │ ├── Part3_Events.html │ │ ├── Part3_Events.js │ │ ├── Part4_Game.js │ │ ├── Part4_GameCSS.css │ │ └── Part4_Game_Project.html │ ├── HTML_Level_One │ │ ├── HTML_Level_One_Assessment.html │ │ ├── Part1_html_basics.html │ │ ├── Part2_basic_tagging.html │ │ ├── Part3_html_lists.html │ │ ├── Part4_divs_spans.html │ │ ├── Part5_html_attributes.html │ │ └── django.png │ ├── HTML_Level_Two │ │ ├── HTML_Level_Two_Assessment.html │ │ ├── Part1_Tables.html │ │ ├── Part2_Table_Quiz.txt │ │ ├── Part3_Table_Quiz_Solution.html │ │ ├── Part4_Forms_Basics.html │ │ ├── Part5_Forms_Labels.html │ │ └── Part6_Forms_Selections.html │ ├── JavaScript_Level_One │ │ ├── Part1_Javascript_Basics.js │ │ ├── Part2.js │ │ ├── Part2_Javascript.html │ │ ├── Part3.js │ │ ├── Part3_Exercise.html │ │ ├── Part4_Operators.js │ │ ├── Part5_Control_Flow.js │ │ ├── Part6_While_Loops.js │ │ ├── Part7_For_Loops.js │ │ ├── Part8_Loops_Exercise.js │ │ ├── Part8_Loops_Exercise_SOLUTIONS.js │ │ ├── Part9.js │ │ └── Part9_JS_Project.html │ ├── Javascript_Level_Two │ │ ├── Part1_Functions.js │ │ ├── Part2_Function_Exercises.js │ │ ├── Part2_Function_Exercises_Solutions.js │ │ ├── Part3_Arrays.js │ │ ├── Part4_Array_Exercise.html │ │ ├── Part4_Array_Exercise.js │ │ ├── Part4_Array_Exercise_SOLUTION.js │ │ ├── Part5_Objects.js │ │ ├── Part6_Objects_Exercise.js │ │ └── Part6_Objects_Exercise_SOLUTIONS.js │ ├── Python_Level_One │ │ ├── Part10_Simple_Game.py │ │ ├── Part10_Simple_Game_SOLUTIONS.py │ │ ├── Part1_Numbers.py │ │ ├── Part2_Strings.py │ │ ├── Part3_Lists.py │ │ ├── Part4_Dictionaries.py │ │ ├── Part5_Tuples_Sets_Booleans.py │ │ ├── Part6_Exercise_Review.py │ │ ├── Part6_Exercise_Review_SOLUTIONS.py │ │ ├── Part7_Control_Flow_Lecture.py │ │ ├── Part8_Functions.py │ │ ├── Part9_Functions_Exercises.py │ │ └── Part9_Functions_Exercises_SOLUTIONS.py │ ├── Python_Level_Two │ │ ├── Part1_Scope.py │ │ ├── Part2_Object_Oriented_Programming.py │ │ ├── Part3_OOP_Project.py │ │ ├── Part3_OOP_Project_SOLUTIONS.py │ │ ├── Part4_Errors_and_Exceptions.py │ │ ├── Part5_Decorators.py │ │ ├── Part6_Modules_and_Packages │ │ │ ├── mymodule.py │ │ │ └── myprogram.py │ │ ├── Part7_Name_and_Main │ │ │ ├── Explanation.txt │ │ │ ├── one.py │ │ │ └── two.py │ │ └── Part8_Regular_Expressions.py │ ├── README.md │ ├── Social_Clone_Project │ │ ├── final-to-do.txt │ │ ├── simple_social_clone.zip │ │ └── simple_social_clone │ │ │ └── simplesocial │ │ │ ├── accounts │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ ├── forms.cpython-35.pyc │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── views.cpython-35.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── accounts │ │ │ │ │ ├── login.html │ │ │ │ │ └── signup.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── groups │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── views.cpython-35.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── groups │ │ │ │ │ ├── group_base.html │ │ │ │ │ ├── group_detail.html │ │ │ │ │ ├── group_form.html │ │ │ │ │ └── group_list.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── posts │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── admin.cpython-35.pyc │ │ │ │ ├── forms.cpython-35.pyc │ │ │ │ ├── models.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ └── views.cpython-35.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ │ │ └── __init__.cpython-35.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── posts │ │ │ │ │ ├── _post.html │ │ │ │ │ ├── post_base.html │ │ │ │ │ ├── post_confirm_delete.html │ │ │ │ │ ├── post_detail.html │ │ │ │ │ ├── post_form.html │ │ │ │ │ ├── post_list.html │ │ │ │ │ └── user_post_list.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── simplesocial │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-35.pyc │ │ │ │ ├── settings.cpython-35.pyc │ │ │ │ ├── urls.cpython-35.pyc │ │ │ │ ├── views.cpython-35.pyc │ │ │ │ └── wsgi.cpython-35.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── wsgi.py │ │ │ ├── static │ │ │ ├── css │ │ │ │ └── master.css │ │ │ └── simplesocial │ │ │ │ ├── css │ │ │ │ └── master.css │ │ │ │ └── js │ │ │ │ └── master.js │ │ │ └── templates │ │ │ ├── base.html │ │ │ ├── index.html │ │ │ ├── test.html │ │ │ └── thanks.html │ ├── django_documentation_1_10.pdf │ └── jQuery │ │ ├── Part1_Basic_jQuery.js │ │ ├── Part1_MyDocument.html │ │ ├── Part2_Events.js │ │ ├── Part3_FrontEndProject.css │ │ ├── Part3_FrontEndProject.html │ │ └── Part3_FrontEndProject.js ├── DJANGO_COURSE_2.xx │ ├── 01-HTML_Level_One │ │ ├── HTML_Level_One_Assessment.html │ │ ├── Part1_html_basics.html │ │ ├── Part2_basic_tagging.html │ │ ├── Part3_html_lists.html │ │ ├── Part4_divs_spans.html │ │ ├── Part5_html_attributes.html │ │ └── django.png │ ├── 02-HTML_Level_Two │ │ ├── HTML_Level_Two_Assessment.html │ │ ├── Part1_Tables.html │ │ ├── Part2_Table_Quiz.txt │ │ ├── Part3_Table_Quiz_Solution.html │ │ ├── Part4_Forms_Basics.html │ │ ├── Part5_Forms_Labels.html │ │ └── Part6_Forms_Selections.html │ ├── 03-CSS_Level_One │ │ ├── CSS_Level_One_Assessment.css │ │ ├── CSS_Level_One_Assessment.html │ │ ├── CSS_Level_One_Test_Solutions.css │ │ ├── Part1.html │ │ ├── Part1_master.css │ │ ├── Part2.html │ │ ├── Part2_master.css │ │ ├── Part3.html │ │ ├── Part3_master.css │ │ ├── Part4_Inspect_Elements │ │ ├── Part5.html │ │ └── Part5_master.css │ ├── 04-CSS_Level_Two │ │ ├── CSS_Level_Two_Spectrum.css │ │ ├── CSS_Level_Two_Spectrum.html │ │ ├── Part1_Fonts.css │ │ ├── Part1_Fonts.html │ │ ├── Part2_Box_Models.css │ │ └── Part2_Box_Models.html │ ├── 05-Capstone_Project_One │ │ ├── Landing_Page.html │ │ ├── landing.css │ │ └── thankyou.html │ ├── 06-Bootstrap │ │ ├── Boostrap_Project_Solutions │ │ │ ├── Bootstrap_Solution_Main.html │ │ │ └── Bootstrap_Solution_Signup.html │ │ ├── Bootstrap_Project_Main.html │ │ ├── Bootstrap_Project_Signup.html │ │ ├── Part1_Buttons.html │ │ ├── Part2_Forms.html │ │ ├── Part3_Navbar.html │ │ └── Part4_Grids.html │ ├── 07-JavaScript_Level_One │ │ ├── Part1_Javascript_Basics.js │ │ ├── Part2.js │ │ ├── Part2_Javascript.html │ │ ├── Part3.js │ │ ├── Part3_Exercise.html │ │ ├── Part4_Operators.js │ │ ├── Part5_Control_Flow.js │ │ ├── Part6_While_Loops.js │ │ ├── Part7_For_Loops.js │ │ ├── Part8_Loops_Exercise.js │ │ ├── Part8_Loops_Exercise_SOLUTIONS.js │ │ ├── Part9.js │ │ └── Part9_JS_Project.html │ ├── 08-Javascript_Level_Two │ │ ├── Part1_Functions.js │ │ ├── Part2_Function_Exercises.js │ │ ├── Part2_Function_Exercises_Solutions.js │ │ ├── Part3_Arrays.js │ │ ├── Part4_Array_Exercise.html │ │ ├── Part4_Array_Exercise.js │ │ ├── Part4_Array_Exercise_SOLUTION.js │ │ ├── Part5_Objects.js │ │ ├── Part6_Objects_Exercise.js │ │ └── Part6_Objects_Exercise_SOLUTIONS.js │ ├── 09-Document_Object_Model │ │ ├── Part1_Color_Changer.js │ │ ├── Part1_MainPage.html │ │ ├── Part2_Content.html │ │ ├── Part2_Interact.js │ │ ├── Part3_Events.html │ │ ├── Part3_Events.js │ │ ├── Part4_Game.js │ │ ├── Part4_GameCSS.css │ │ └── Part4_Game_Project.html │ ├── 10-jQuery │ │ ├── Part1_Basic_jQuery.js │ │ ├── Part1_MyDocument.html │ │ ├── Part2_Events.js │ │ ├── Part3_FrontEndProject.css │ │ ├── Part3_FrontEndProject.html │ │ └── Part3_FrontEndProject.js │ ├── 11-Command_Line_Crash_Course │ │ ├── Mac_and_Linux.txt │ │ └── Windows.txt │ ├── 12-Python_Level_One │ │ ├── Part10_Simple_Game.py │ │ ├── Part10_Simple_Game_SOLUTIONS.py │ │ ├── Part1_Numbers.py │ │ ├── Part2_Strings.py │ │ ├── Part3_Lists.py │ │ ├── Part4_Dictionaries.py │ │ ├── Part5_Tuples_Sets_Booleans.py │ │ ├── Part6_Exercise_Review.py │ │ ├── Part6_Exercise_Review_SOLUTIONS.py │ │ ├── Part7_Control_Flow_Lecture.py │ │ ├── Part8_Functions.py │ │ ├── Part9_Functions_Exercises.py │ │ └── Part9_Functions_Exercises_SOLUTIONS.py │ ├── 13-Python_Level_Two │ │ ├── Part1_Scope.py │ │ ├── Part2_Object_Oriented_Programming.py │ │ ├── Part3_OOP_Project.py │ │ ├── Part3_OOP_Project_SOLUTIONS.py │ │ ├── Part4_Errors_and_Exceptions.py │ │ ├── Part5_Decorators.py │ │ ├── Part6_Modules_and_Packages │ │ │ ├── mymodule.py │ │ │ └── myprogram.py │ │ ├── Part7_Name_and_Main │ │ │ ├── Explanation.txt │ │ │ ├── one.py │ │ │ └── two.py │ │ └── Part8_Regular_Expressions.py │ ├── 14-Django_Level_One │ │ ├── ProTwo │ │ │ ├── ProTwo │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── wsgi.cpython-37.pyc │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── appTwo │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ └── appTwo │ │ │ │ │ │ └── help.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ └── manage.py │ │ └── first_project │ │ │ ├── db.sqlite3 │ │ │ ├── first_app │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-36.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ ├── apps.cpython-36.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── views.cpython-37.pyc │ │ │ │ └── views.cpython-38.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── static │ │ │ │ └── first_app │ │ │ │ │ ├── css │ │ │ │ │ └── mystyle.css │ │ │ │ │ └── images │ │ │ │ │ └── djangoguitar.jpg │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── first_project │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── settings.cpython-36.pyc │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ ├── settings.cpython-38.pyc │ │ │ │ ├── urls.cpython-36.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── wsgi.cpython-37.pyc │ │ │ │ └── wsgi.cpython-38.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── manage.py │ │ │ └── templates │ │ │ └── first_app │ │ │ ├── index.html │ │ │ └── indexOLD.html │ ├── 15-Django_Level_Two │ │ ├── ProTwo │ │ │ ├── ProTwo │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── wsgi.cpython-37.pyc │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── appTwo │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ └── appTwo │ │ │ │ │ │ ├── help.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── users.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── manage.py │ │ │ └── populate_users.py │ │ └── first_project │ │ │ ├── db.sqlite3 │ │ │ ├── first_app │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-36.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ ├── apps.cpython-36.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── views.cpython-37.pyc │ │ │ │ └── views.cpython-38.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── models.py │ │ │ ├── static │ │ │ │ └── first_app │ │ │ │ │ ├── css │ │ │ │ │ ├── estyle.css │ │ │ │ │ └── style.css │ │ │ │ │ └── images │ │ │ │ │ └── djangoguitar.jpg │ │ │ ├── templates │ │ │ │ └── first_app │ │ │ │ │ ├── index.html │ │ │ │ │ ├── indexOLD.html │ │ │ │ │ ├── indexOLD2.html │ │ │ │ │ └── test.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── first_project │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── settings.cpython-36.pyc │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ ├── settings.cpython-38.pyc │ │ │ │ ├── urls.cpython-36.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── wsgi.cpython-37.pyc │ │ │ │ └── wsgi.cpython-38.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── manage.py │ │ │ └── populate_first_app.py │ ├── 16-Django_Level_Three │ │ ├── ProTwo │ │ │ ├── ProTwo │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── wsgi.cpython-37.pyc │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── appTwo │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── forms.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── forms.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ └── appTwo │ │ │ │ │ │ ├── help.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── users.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── manage.py │ │ │ └── populate_users.py │ │ ├── basicforms │ │ │ ├── basicapp │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ │ ├── forms.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ └── views.cpython-37.pyc │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── forms.py │ │ │ │ ├── migrations │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ └── basicapp │ │ │ │ │ │ ├── form_page.html │ │ │ │ │ │ └── index.html │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── basicforms │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ │ └── wsgi.cpython-37.pyc │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ └── manage.py │ │ └── test │ │ │ └── ProTwo │ │ │ ├── ProTwo │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ ├── settings.cpython-38.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── wsgi.cpython-37.pyc │ │ │ │ └── wsgi.cpython-38.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── appTwo │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── views.cpython-37.pyc │ │ │ │ └── views.cpython-38.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── appTwo │ │ │ │ │ ├── help.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── users.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── manage.py │ │ │ └── populate_users.py │ ├── 17-Django_Level_Four │ │ └── learning_templates │ │ │ ├── basic_app │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── basic_app │ │ │ │ │ ├── base.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── other.html │ │ │ │ │ └── relative_url_templates.html │ │ │ ├── templatetags │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── my_extras.cpython-36.pyc │ │ │ │ │ └── my_extras.cpython-37.pyc │ │ │ │ └── my_extras.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── learning_templates │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── wsgi.cpython-37.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ └── manage.py │ ├── 18-Django_Level_Five │ │ └── learning_users │ │ │ ├── .vscode │ │ │ └── settings.json │ │ │ ├── basic_app │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ ├── forms.cpython-37.pyc │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── views.cpython-37.pyc │ │ │ │ └── views.cpython-38.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── basic_app │ │ │ │ │ ├── base.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── login.html │ │ │ │ │ └── registration.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── learning_users │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ ├── settings.cpython-38.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── wsgi.cpython-37.pyc │ │ │ │ └── wsgi.cpython-38.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── manage.py │ │ │ └── media │ │ │ └── basic_app │ │ │ └── profile_pics │ │ │ └── combination-lock.jpg │ ├── 19-Advanced_Django_CBV │ │ └── advcbv │ │ │ ├── advcbv │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── settings.cpython-36.pyc │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ ├── settings.cpython-38.pyc │ │ │ │ ├── urls.cpython-36.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── wsgi.cpython-37.pyc │ │ │ │ └── wsgi.cpython-38.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ ├── basic_app │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-36.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ ├── apps.cpython-36.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── views.cpython-37.pyc │ │ │ │ └── views.cpython-38.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── basic_app │ │ │ │ │ ├── basic_app_base.html │ │ │ │ │ ├── school_confirm_delete.html │ │ │ │ │ ├── school_detail.html │ │ │ │ │ ├── school_form.html │ │ │ │ │ └── school_list.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── manage.py │ │ │ └── templates │ │ │ ├── base.html │ │ │ └── index.html │ ├── 20-Blog_Clone_Project │ │ └── mysite │ │ │ ├── blog │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── forms.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── static │ │ │ │ └── css │ │ │ │ │ └── blog.css │ │ │ ├── templates │ │ │ │ ├── blog │ │ │ │ │ ├── about.html │ │ │ │ │ ├── base.html │ │ │ │ │ ├── comment_form.html │ │ │ │ │ ├── post_confirm_delete.html │ │ │ │ │ ├── post_detail.html │ │ │ │ │ ├── post_draft_list.html │ │ │ │ │ ├── post_form.html │ │ │ │ │ └── post_list.html │ │ │ │ └── registration │ │ │ │ │ └── login.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── manage.py │ │ │ └── mysite │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── wsgi.cpython-37.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ ├── 21-Social_Clone_Project │ │ └── simplesocial │ │ │ ├── accounts │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── forms.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── accounts │ │ │ │ │ ├── login.html │ │ │ │ │ └── signup.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── db.sqlite3 │ │ │ ├── groups │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── groups │ │ │ │ │ ├── group_base.html │ │ │ │ │ ├── group_detail.html │ │ │ │ │ ├── group_form.html │ │ │ │ │ └── group_list.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── posts │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── apps.cpython-37.pyc │ │ │ │ ├── forms.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── posts │ │ │ │ │ ├── _post.html │ │ │ │ │ ├── post_base.html │ │ │ │ │ ├── post_confirm_delete.html │ │ │ │ │ ├── post_detail.html │ │ │ │ │ ├── post_form.html │ │ │ │ │ ├── post_list.html │ │ │ │ │ └── user_post_list.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── simplesocial │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── views.cpython-37.pyc │ │ │ │ └── wsgi.cpython-37.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── wsgi.py │ │ │ ├── static │ │ │ ├── css │ │ │ │ └── master.css │ │ │ └── simplesocial │ │ │ │ ├── css │ │ │ │ └── master.css │ │ │ │ └── js │ │ │ │ └── master.js │ │ │ └── templates │ │ │ ├── base.html │ │ │ ├── index.html │ │ │ ├── test.html │ │ │ └── thanks.html │ ├── README.md │ └── django_documentation_2_0_9.pdf └── Don't Skip.pdf ├── Section 10 - Javascript Level Two ├── .vscode │ └── settings.json ├── JavaScript Level Two.pdf ├── Part 1 & 2 (Function and Exercise) │ ├── Part1_Functions.js │ ├── Part2_Function_Exercises.js │ ├── Part2_Function_Exercises_Solutions.js │ └── part1.html ├── Part 3 & 4 (Arrays and Exercise) │ ├── Part3_Arrays.js │ ├── Part4_Array_Exercise.html │ ├── Part4_Array_Exercise.js │ └── Part4_Array_Exercise_SOLUTION.js └── Part 5 & 6 (Objects and Exercise) │ ├── Part5_Objects.js │ ├── Part6_Objects_Exercise.js │ └── Part6_Objects_Exercise_SOLUTIONS.js ├── Section 11 - Document Object Model ├── .vscode │ └── settings.json ├── Document Object Model.pdf ├── Part 1 - DOM Interaction │ ├── Part1_Color_Changer.js │ └── Part1_MainPage.html ├── Part 2 - Content Interaction │ ├── Part2_Content.html │ └── Part2_Interact.js ├── Part 3 - Event │ ├── Part3_Events.html │ └── Part3_Events.js └── Part 4 - TikTacToe Game Project │ ├── Part4_Game.js │ ├── Part4_GameCSS.css │ ├── Part4_Game_Project.html │ └── myFolder │ ├── game.css │ ├── game.html │ └── game.js ├── Section 12 - jQuery ├── Part 1 (Basics) │ ├── Part1_Basic_jQuery.js │ └── Part1_MyDocument.html ├── Part 2 (Events) │ └── Part2_Events.js ├── Part 3 (Project) │ ├── Part3_FrontEndProject.css │ ├── Part3_FrontEndProject.html │ └── Part3_FrontEndProject.js └── jQuery.pdf ├── Section 13 - Back-End Introduction ├── Introduction to the Back-End.pdf ├── Mac_and_Linux.txt └── Windows.txt ├── Section 14 - Python - Level One ├── .vscode │ └── settings.json ├── Part10_Simple_Game.py ├── Part10_Simple_Game_SOLUTIONS.py ├── Part1_Numbers.py ├── Part2_Strings.py ├── Part3_Lists.py ├── Part4_Dictionaries.py ├── Part5_Tuples_Sets_Booleans.py ├── Part6_Exercise_Review.py ├── Part6_Exercise_Review_SOLUTIONS.py ├── Part7_Control_Flow_Lecture.py ├── Part8_Functions.py ├── Part9_Functions_Exercises.py ├── Part9_Functions_Exercises_SOLUTIONS.py └── test.py ├── Section 15- Python - Level Two ├── Part1_Scope.py ├── Part2_Object_Oriented_Programming.py ├── Part3_OOP_Project.py ├── Part3_OOP_Project_SOLUTIONS.py ├── Part4_Errors_and_Exceptions.py ├── Part5_Decorators.py ├── Part6_Modules_and_Packages │ ├── mymodule.py │ └── myprogram.py ├── Part7_Name_and_Main │ ├── Explanation.txt │ ├── one.py │ └── two.py ├── Part8_Regular_Expressions.py └── Python - Level Two.pdf ├── Section 16 - Django Level One - Basics ├── Django Level One.pdf ├── ProTwo │ ├── ProTwo │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── settings.cpython-38.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ └── wsgi.cpython-38.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── appTwo │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── models.cpython-38.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ └── views.cpython-38.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ └── templates │ │ └── AppTwo │ │ └── index.html └── first_project │ ├── first_app │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── apps.cpython-37.pyc │ │ ├── models.cpython-36.pyc │ │ ├── models.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __pycache__ │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── static │ │ └── first_app │ │ │ ├── css │ │ │ └── mystyle.css │ │ │ └── images │ │ │ └── djangoguitar.jpg │ ├── templates │ │ └── first_app │ │ │ ├── index.html │ │ │ └── indexOLD.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── first_project │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-36.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── manage.py ├── Section 17 - Django Level Two ├── Django Level Two.pdf ├── ProTwo │ ├── ProTwo │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── wsgi.cpython-37.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── appTwo │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── apps.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── templates │ │ │ └── appTwo │ │ │ │ ├── help.html │ │ │ │ ├── index.html │ │ │ │ └── users.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ └── populate_users.py ├── first_project │ ├── db.sqlite3 │ ├── first_app │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-36.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.cpython-36.pyc │ │ │ ├── apps.cpython-37.pyc │ │ │ ├── apps.cpython-38.pyc │ │ │ ├── models.cpython-36.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── models.cpython-38.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── views.cpython-37.pyc │ │ │ └── views.cpython-38.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── models.py │ │ ├── static │ │ │ └── first_app │ │ │ │ ├── css │ │ │ │ └── mystyle.css │ │ │ │ └── images │ │ │ │ └── djangoguitar.jpg │ │ ├── templates │ │ │ └── first_app │ │ │ │ ├── index.html │ │ │ │ ├── indexOLD.html │ │ │ │ └── indexOLD2.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── first_project │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-36.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── settings.cpython-38.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── wsgi.cpython-37.pyc │ │ │ └── wsgi.cpython-38.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ └── populate_first_app.py ├── newProject │ └── ProTwo │ │ ├── ProTwo │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── settings.cpython-38.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── wsgi.cpython-37.pyc │ │ │ └── wsgi.cpython-38.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── appTwo │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.cpython-37.pyc │ │ │ ├── apps.cpython-38.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── models.cpython-38.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── views.cpython-37.pyc │ │ │ └── views.cpython-38.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── templates │ │ │ └── appTwo │ │ │ │ └── help.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── db.sqlite3 │ │ └── manage.py └── testProject │ ├── db.sqlite3 │ ├── manage.py │ ├── populate_users.py │ ├── testApp │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── static │ │ └── testApp │ │ │ └── css │ │ │ └── style.css │ ├── templates │ │ └── testApp │ │ │ ├── index.html │ │ │ └── users.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── testProject │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── settings.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── wsgi.cpython-38.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── Section 18 - Django Level Three ├── Django Level Three.pdf ├── ProTwo │ ├── ProTwo │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── settings.cpython-38.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── wsgi.cpython-37.pyc │ │ │ └── wsgi.cpython-38.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── appTwo │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.cpython-37.pyc │ │ │ ├── apps.cpython-38.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── forms.cpython-38.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── models.cpython-38.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── views.cpython-37.pyc │ │ │ └── views.cpython-38.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── models.py │ │ ├── templates │ │ │ └── appTwo │ │ │ │ ├── help.html │ │ │ │ ├── index.html │ │ │ │ └── users.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ └── populate_users.py ├── basicforms │ ├── basicapp │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── apps.cpython-37.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── templates │ │ │ └── basicapp │ │ │ │ ├── form_page.html │ │ │ │ └── index.html │ │ ├── tests.py │ │ └── views.py │ ├── basicforms │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── wsgi.cpython-37.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── manage.py └── studyProject │ ├── db.sqlite3 │ ├── manage.py │ ├── studyApp │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── forms.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── templates │ │ └── studyApp │ │ │ ├── form_page.html │ │ │ └── index.html │ ├── tests.py │ └── views.py │ └── studyProject │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── settings.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── wsgi.cpython-38.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── Section 19 - Django Level Four ├── Django Level Four.pdf └── learning_templates │ ├── basic_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── apps.cpython-37.pyc │ │ ├── apps.cpython-38.pyc │ │ ├── models.cpython-37.pyc │ │ ├── models.cpython-38.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── views.cpython-37.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── templates │ │ └── basic_app │ │ │ ├── base.html │ │ │ ├── index.html │ │ │ ├── other.html │ │ │ └── relative_url_templates.html │ ├── templatetags │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── my_extras.cpython-36.pyc │ │ │ ├── my_extras.cpython-37.pyc │ │ │ └── my_extras.cpython-38.pyc │ │ └── my_extras.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── learning_templates │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── settings.cpython-38.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── wsgi.cpython-37.pyc │ │ └── wsgi.cpython-38.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── manage.py ├── Section 2 - Front-End Introduction └── Websites Overview.pdf ├── Section 20 - Django Level Five ├── .vscode │ └── settings.json ├── Django Level Five.pdf ├── delt.txt └── learning_users │ ├── .vscode │ └── settings.json │ ├── basic_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── apps.cpython-37.pyc │ │ ├── apps.cpython-38.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── forms.cpython-38.pyc │ │ ├── models.cpython-37.pyc │ │ ├── models.cpython-38.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── views.cpython-37.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── templates │ │ └── basic_app │ │ │ ├── base.html │ │ │ ├── index.html │ │ │ ├── login.html │ │ │ └── registration.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── learning_users │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── settings.cpython-38.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── wsgi.cpython-37.pyc │ │ └── wsgi.cpython-38.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── media │ └── basic_app │ └── profile_pics │ └── combination-lock.jpg ├── Section 21 - Django Deployment └── List of different docs of diff websites clouds.md ├── Section 22 - Advanced Topics - CBVs ├── Advanced Django CBV.pdf ├── advcbv │ ├── advcbv │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-36.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── settings.cpython-38.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── wsgi.cpython-37.pyc │ │ │ └── wsgi.cpython-38.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── basic_app │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-36.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.cpython-36.pyc │ │ │ ├── apps.cpython-37.pyc │ │ │ ├── apps.cpython-38.pyc │ │ │ ├── models.cpython-36.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── models.cpython-38.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── views.cpython-37.pyc │ │ │ └── views.cpython-38.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── templates │ │ │ └── basic_app │ │ │ │ ├── basic_app_base.html │ │ │ │ ├── school_confirm_delete.html │ │ │ │ ├── school_detail.html │ │ │ │ ├── school_form.html │ │ │ │ └── school_list.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ └── templates │ │ ├── base.html │ │ └── index.html └── testadvcbv │ ├── db.sqlite3 │ ├── manage.py │ ├── templates │ ├── base.html │ └── index.html │ ├── test_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── apps.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── templates │ │ └── basic_app │ │ │ ├── school_confirm_delete.html │ │ │ ├── school_detail.html │ │ │ ├── school_form.html │ │ │ ├── school_list.html │ │ │ └── test_app_base.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── testadvcbv │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── settings.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── wsgi.cpython-38.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── Section 3 - HTML Level One - Basics ├── HTML Level One.pdf └── HTML_LEVEL_ONE │ ├── 1) basics.html │ ├── 2) Ordered_Unordered_List.html │ ├── 3) Divs_and_spans.html │ ├── 4) Attributes(Adding_imgs_and_linking_to_another_html_page).html │ ├── HTML_Level_One_Assessment.html │ ├── django.png │ └── new.html ├── Section 4 - HTML Level Two - Advanced ├── HTML Level Two.pdf └── HTML_LEVEL_TWO │ ├── 1) table.html │ ├── 1.2) Table_Quiz_Solution.html │ ├── 2) forms_basics.html │ ├── 3) Forms_and_Labels.html │ ├── 4) Forms_and_Selections.html │ └── Level_Two_Assessment_Solution.html ├── Section 5 - CSS Level One - Basics ├── CSS Level One.pdf └── CSS_LEVEL_ONE │ ├── Level_One_Assessment_Solution.css │ ├── Level_One_Assessment_Solution.html │ ├── Part 1 │ ├── name_#_rgba__rgb.css │ └── name_#_rgba__rgb.html │ ├── Part 2 │ ├── div_span.css │ └── div_span.html │ ├── Part 3 │ ├── part3.html │ └── part3_master.css │ └── Part 5 │ ├── Part5.html │ └── Part5_master.css ├── Section 6 - CSS Level Two - Advanced ├── CSS Level Two.pdf └── CSS_LEVEL_TWO │ ├── Part 1 │ ├── font.css │ └── font.html │ ├── Part 2 │ ├── Box_Models.css │ └── Box_Models.html │ ├── spectrum_project.css │ └── spectrum_project.html ├── Section 7 - Capstone Project One ├── startup.css ├── startup.html └── thanks.html ├── Section 8 - Bootstrap Overview ├── Bootstrap_Project_Login.html ├── Bootstrap_Project_Main.html ├── Part1(containers_buttons_jumbotrons).html ├── Part2_Forms.html ├── Part3_Navbar.html ├── Part4_Grids.html └── bootstrap.pdf ├── Section 9 - Javascript Level One - Basics ├── JavaScript Level One.pdf ├── Part 1 (Basics) │ └── Part1_Javascript_Basics.js ├── Part 2 (alert, console.log, prompt) │ ├── Part2.js │ └── Part2_Javascript.html ├── Part 3 (Exercise) │ ├── Part3_Exercise.html │ └── myjs.js ├── Part 4 (Operators) │ └── Part4_Operators.js ├── Part 5 (Control Flow) │ └── Part5_Control_Flow.js ├── Part 6 (While Loop) │ └── Part6_While_Loops.js ├── Part 7 (For Loop) │ └── Part7_For_Loops.js ├── Part 8 (Loop Exercise) │ ├── Part8_Loops_Exercise.js │ └── abc.html └── Part 9 (Main Project of this Section) │ ├── Part9.js │ └── Part9_JS_Project.html ├── delt.txt ├── html,css,bootstrap,javascript.pdf └── python and django (1).pdf /Backend(Python & Django) Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Backend(Python & Django) Notes.pdf -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Advanced_Django_CBV/advcbv/advcbv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Advanced_Django_CBV/advcbv/advcbv/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Advanced_Django_CBV/advcbv/basic_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Advanced_Django_CBV/advcbv/basic_app/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Advanced_Django_CBV/advcbv/basic_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from basic_app.models import School,Student 3 | # Register your models here. 4 | admin.site.register(School) 5 | admin.site.register(Student) 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Advanced_Django_CBV/advcbv/basic_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicAppConfig(AppConfig): 5 | name = 'basic_app' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Advanced_Django_CBV/advcbv/basic_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Advanced_Django_CBV/advcbv/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Advanced_Django_CBV/advcbv/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Advanced_Django_CBV/advcbv/templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block body_block %} 4 |

Welcome to the index page!

5 |

Here is your injected content: {{ injectme }}

6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | __pycache__ 4 | venv 5 | db.sqlite3 6 | /static 7 | .DS_Store 8 | .idea 9 | local_settings.py 10 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/blog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/blog/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/blog/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from .models import Post, Comment 4 | 5 | 6 | admin.site.register(Post) 7 | admin.site.register(Comment) -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/blog/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BlogConfig(AppConfig): 5 | name = 'blog' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/blog/static/js/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/blog/static/js/blog.js -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/blog/templates/blog/about.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |

About me

4 |

Thanks for visiting my blog! Check all this cool stuff about me!

5 | 6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/blog/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/mysite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/mysite/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Blog_Clone_Project/blog_project/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.5.2 2 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/CSS_Level_One/Part4_Inspect_Elements: -------------------------------------------------------------------------------- 1 | Hey! No html file here! 2 | 3 | Just check out the video lecture for a tour of the 4 | Chrome Browser Inspector, a very useful tool indeed! 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Five/learning_users/basic_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Five/learning_users/basic_app/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Five/learning_users/basic_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from basic_app.models import UserProfileInfo, User 3 | 4 | # Register your models here. 5 | admin.site.register(UserProfileInfo) 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Five/learning_users/basic_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicAppConfig(AppConfig): 5 | name = 'basic_app' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Five/learning_users/basic_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Five/learning_users/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Five/learning_users/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Four/learning_templates/basic_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Four/learning_templates/basic_app/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Four/learning_templates/basic_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Four/learning_templates/basic_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicAppConfig(AppConfig): 5 | name = 'basic_app' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Four/learning_templates/basic_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Four/learning_templates/basic_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Four/learning_templates/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Four/learning_templates/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Four/learning_templates/templates/basic_app/index.html: -------------------------------------------------------------------------------- 1 | 2 | {% extends "basic_app/base.html" %} 3 | {% block body_block%} 4 | 5 |

Hello and welcome to the site!

6 |

This is the index.html page

7 | 8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/ProTwo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/ProTwo/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/appTwo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/appTwo/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'appTwo' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/appTwo/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/appTwo/migrations/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/appTwo/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url 2 | from appTwo import views 3 | 4 | urlpatterns = [ 5 | url(r'^$',views.help,name='help'), 6 | ] 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/ProTwo/templates/appTwo/help.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HELP PAGE 6 | 7 | 8 | {{ help_insert }} 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/first_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/first_app/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | name = 'first_app' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/first_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url 2 | from first_app import views 3 | 4 | urlpatterns = [ 5 | url(r'^$',views.index,name='index'), 6 | ] 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/first_project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/first_project/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_One/first_project/static/css/mystyle.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/ProTwo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/ProTwo/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/appTwo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/appTwo/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from appTwo.models import User 3 | # Register your models here. 4 | admin.site.register(User) 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'appTwo' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/appTwo/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from appTwo.models import User 3 | 4 | class NewUserForm(forms.ModelForm): 5 | class Meta(): 6 | model = User 7 | fields = '__all__' 8 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/appTwo/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/appTwo/migrations/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url 2 | from appTwo import views 3 | 4 | urlpatterns = [ 5 | url(r'^$',views.users,name='users'), 6 | ] 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/ProTwo/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/basicforms/basicapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/basicforms/basicapp/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/basicforms/basicapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/basicforms/basicapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicappConfig(AppConfig): 5 | name = 'basicapp' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/basicforms/basicapp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/basicforms/basicapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/basicforms/basicforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/basicforms/basicforms/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/basicforms/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Three/basicforms/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/ProTwo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/ProTwo/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/appTwo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/appTwo/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from appTwo.models import User 3 | # Register your models here. 4 | admin.site.register(User) 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'appTwo' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/appTwo/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/appTwo/migrations/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url 2 | from appTwo import views 3 | 4 | urlpatterns = [ 5 | url(r'^$',views.users,name='users'), 6 | ] 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/ProTwo/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/first_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/first_app/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | 5 | from first_app.models import Topic,Webpage,AccessRecord 6 | admin.site.register(Topic) 7 | admin.site.register(Webpage) 8 | admin.site.register(AccessRecord) 9 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | name = 'first_app' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url 2 | from first_app import views 3 | 4 | urlpatterns = [ 5 | url(r'^$',views.index,name='index'), 6 | ] 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/first_project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/first_project/__init__.py -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Django_Level_Two/first_project/static/css/mystyle.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Document_Object_Model/Part4_GameCSS.css: -------------------------------------------------------------------------------- 1 | td{ 2 | height: 150px; 3 | width: 150px; 4 | text-align: center; 5 | /*padding: 100px;*/ 6 | border: 5px solid black; 7 | font-size: 100px 8 | } 9 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/HTML_Level_One/django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/HTML_Level_One/django.png -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/JavaScript_Level_One/Part2.js: -------------------------------------------------------------------------------- 1 | alert("Welcome to your bank's website!") 2 | var deposit = prompt("How much would you like to deposit today?") 3 | alert("You've deposited: "+deposit+" into your account.") 4 | console.log("You are a cool person!") 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/JavaScript_Level_One/Part3.js: -------------------------------------------------------------------------------- 1 | var lbs = prompt("What is the weight in pounds (lbs)?") 2 | var kg = lbs*0.454 3 | alert("That is: "+kg+" kilograms") 4 | console.log("Conversion Completed") 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Python_Level_Two/Part6_Modules_and_Packages/mymodule.py: -------------------------------------------------------------------------------- 1 | # This is the module we will be importing from! 2 | # Great resource: https://docs.python.org/3/tutorial/modules.html 3 | 4 | def func_in_mymodule(): 5 | print("I am a function inside of the mymodule.py file!") 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Python_Level_Two/Part7_Name_and_Main/two.py: -------------------------------------------------------------------------------- 1 | import one 2 | 3 | print("top-level in two.py") 4 | 5 | one.func() 6 | 7 | if __name__ == "__main__": 8 | print("two.py is being run directly") 9 | else: 10 | print("two.py is being imported into another module") 11 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/README.md: -------------------------------------------------------------------------------- 1 | # Django-Python-Full-Stack-Web-Developer 2 | Notes and files for the Python full stack developer course! 3 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone.zip -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/accounts/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/accounts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AccountsConfig(AppConfig): 5 | name = 'accounts' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/accounts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/groups/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from . import models 4 | 5 | 6 | class GroupMemberInline(admin.TabularInline): 7 | model = models.GroupMember 8 | 9 | 10 | 11 | admin.site.register(models.Group) 12 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/groups/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class GroupsConfig(AppConfig): 5 | name = 'groups' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/groups/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/posts/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from . import models 4 | 5 | admin.site.register(models.Post) 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/posts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PostsConfig(AppConfig): 5 | name = 'posts' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/posts/templates/posts/post_detail.html: -------------------------------------------------------------------------------- 1 | {% extends "posts/post_base.html" %} 2 | 3 | {% block post_content %} 4 |
5 | {% include "posts/_post.html" %} 6 |
7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/posts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/static/simplesocial/css/master.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | overflow: hidden; 4 | background-color: black; 5 | color:white; 6 | } 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block content %} 3 | 4 |

Welcome to Star Social!

5 | 6 | 7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/Social_Clone_Project/simple_social_clone/simplesocial/templates/thanks.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block content %} 3 |

Thanks for visiting! Come back soon!

4 | 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/django_documentation_1_10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_1.xx/django_documentation_1_10.pdf -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_1.xx/jQuery/Part3_FrontEndProject.css: -------------------------------------------------------------------------------- 1 | .board button { 2 | width: 100px; 3 | height: 100px; 4 | background-color: gray; 5 | border-radius: 50%; 6 | border: 4px solid black; /*this gets rid of bootstrap shadow*/ 7 | margin: 1px; 8 | } 9 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/01-HTML_Level_One/django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/01-HTML_Level_One/django.png -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/03-CSS_Level_One/Part4_Inspect_Elements: -------------------------------------------------------------------------------- 1 | Hey! No html file here! 2 | 3 | Just check out the video lecture for a tour of the 4 | Chrome Browser Inspector, a very useful tool indeed! 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/07-JavaScript_Level_One/Part2.js: -------------------------------------------------------------------------------- 1 | alert("Welcome to your bank's website!") 2 | var deposit = prompt("How much would you like to deposit today?") 3 | alert("You've deposited: "+deposit+" into your account.") 4 | console.log("You are a cool person!") 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/07-JavaScript_Level_One/Part3.js: -------------------------------------------------------------------------------- 1 | var lbs = prompt("What is the weight in pounds (lbs)?") 2 | var kg = lbs*0.454 3 | alert("That is: "+kg+" kilograms") 4 | console.log("Conversion Completed") 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/09-Document_Object_Model/Part4_GameCSS.css: -------------------------------------------------------------------------------- 1 | td{ 2 | height: 150px; 3 | width: 150px; 4 | text-align: center; 5 | /*padding: 100px;*/ 6 | border: 5px solid black; 7 | font-size: 100px 8 | } 9 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/10-jQuery/Part3_FrontEndProject.css: -------------------------------------------------------------------------------- 1 | .board button { 2 | width: 100px; 3 | height: 100px; 4 | background-color: gray; 5 | border-radius: 50%; 6 | border: 4px solid black; /*this gets rid of bootstrap shadow*/ 7 | margin: 1px; 8 | } 9 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/13-Python_Level_Two/Part6_Modules_and_Packages/mymodule.py: -------------------------------------------------------------------------------- 1 | # This is the module we will be importing from! 2 | # Great resource: https://docs.python.org/3/tutorial/modules.html 3 | 4 | def func_in_mymodule(): 5 | print("I am a function inside of the mymodule.py file!") 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/13-Python_Level_Two/Part7_Name_and_Main/two.py: -------------------------------------------------------------------------------- 1 | import one 2 | 3 | print("top-level in two.py") 4 | 5 | one.func() 6 | 7 | if __name__ == "__main__": 8 | print("two.py is being run directly") 9 | else: 10 | print("two.py is being imported into another module") 11 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'appTwo' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/ProTwo/appTwo/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/ProTwo/appTwo/templates/appTwo/help.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HELP PAGE 6 | 7 | 8 | {{ help_insert }} 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.help, name='help'), 6 | ] 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/first_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/first_project/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/first_project/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/first_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | name = 'first_app' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/first_project/first_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/first_project/first_app/static/first_app/css/mystyle.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/first_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/14-Django_Level_One/first_project/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name='index'), 6 | ] 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import User 3 | # Register your models here. 4 | admin.site.register(User) 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'appTwo' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/ProTwo/appTwo/templates/appTwo/help.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HELP PAGE 6 | 7 | 8 | {{ help_insert }} 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name="index"), 6 | path('users/', views.users, name="users"), 7 | path('help/', views.help, name='help'), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/ProTwo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/ProTwo/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/first_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/first_project/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/first_project/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Topic,Webpage,AccessRecord 3 | # Register your models here. 4 | admin.site.register(Topic) 5 | admin.site.register(Webpage) 6 | admin.site.register(AccessRecord) 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/first_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | name = 'first_app' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/first_project/first_app/static/first_app/css/estyle.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/first_project/first_app/static/first_app/css/style.css: -------------------------------------------------------------------------------- 1 | #abcc{ 2 | color: purple; 3 | } 4 | table { 5 | border-collapse: collapse; 6 | } 7 | table, th, td{ 8 | border: 2px solid black; 9 | } 10 | 11 | h3, h2{ 12 | color: green; 13 | } 14 | 15 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/first_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/first_project/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name='index'), 6 | path('test/', views.test, name='test'), 7 | ] 8 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import User 3 | # Register your models here. 4 | admin.site.register(User) 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'appTwo' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/ProTwo/appTwo/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import User 3 | 4 | class NewUserForm(forms.ModelForm): 5 | class Meta: 6 | model = User 7 | fields = '__all__' 8 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/ProTwo/appTwo/templates/appTwo/help.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HELP PAGE 6 | 7 | 8 | {{ help_insert }} 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name="index"), 6 | path('users/', views.users, name="users"), 7 | path('help/', views.help, name='help'), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/ProTwo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/ProTwo/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/basicforms/basicapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/basicforms/basicapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicappConfig(AppConfig): 5 | name = 'basicapp' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/basicforms/basicapp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/basicforms/basicapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/test/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import User 3 | # Register your models here. 4 | admin.site.register(User) 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/test/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'appTwo' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/test/ProTwo/appTwo/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from appTwo.models import User 3 | 4 | class NewUserForm(forms.ModelForm): 5 | class Meta: 6 | model = User 7 | fields = '__all__' -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/test/ProTwo/appTwo/templates/appTwo/help.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HELP PAGE 6 | 7 | 8 | {{ help_insert }} 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/test/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/test/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name="index"), 6 | path('users/', views.users, name="users"), 7 | path('help/', views.help, name='help'), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/test/ProTwo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/16-Django_Level_Three/test/ProTwo/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/17-Django_Level_Four/learning_templates/basic_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/17-Django_Level_Four/learning_templates/basic_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicAppConfig(AppConfig): 5 | name = 'basic_app' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/17-Django_Level_Four/learning_templates/basic_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | # SuperUserInformation 3 | # User: Jose 4 | # Email: training@pieriandata.com 5 | # Password: testpassword 6 | 7 | # Create your models here. 8 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/17-Django_Level_Four/learning_templates/basic_app/templatetags/my_extras.py: -------------------------------------------------------------------------------- 1 | from django import template 2 | register = template.Library() 3 | 4 | @register.filter 5 | def cutout(value, arg): 6 | return value.replace(arg, '') 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/17-Django_Level_Four/learning_templates/basic_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/17-Django_Level_Four/learning_templates/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/17-Django_Level_Four/learning_templates/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/18-Django_Level_Five/learning_users/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "C:\\Users\\DELL\\anaconda3\\envs\\scrapperEnv\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/18-Django_Level_Five/learning_users/basic_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import UserProfileInfo, User 3 | 4 | # Register your models here. 5 | admin.site.register(UserProfileInfo) 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/18-Django_Level_Five/learning_users/basic_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicAppConfig(AppConfig): 5 | name = 'basic_app' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/18-Django_Level_Five/learning_users/basic_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/18-Django_Level_Five/learning_users/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/18-Django_Level_Five/learning_users/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/19-Advanced_Django_CBV/advcbv/basic_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import School,Student 3 | # Register your models here. 4 | admin.site.register(School) 5 | admin.site.register(Student) 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/19-Advanced_Django_CBV/advcbv/basic_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicAppConfig(AppConfig): 5 | name = 'basic_app' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/19-Advanced_Django_CBV/advcbv/basic_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/19-Advanced_Django_CBV/advcbv/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/19-Advanced_Django_CBV/advcbv/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/19-Advanced_Django_CBV/advcbv/templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block body_block %} 4 |

Welcome to the index page!

5 |

Here is your injected content: {{ injectme }}

6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/20-Blog_Clone_Project/mysite/blog/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Post, Comment 3 | 4 | # Register your models here. 5 | admin.site.register(Post) 6 | admin.site.register(Comment) 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/20-Blog_Clone_Project/mysite/blog/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BlogConfig(AppConfig): 5 | name = 'blog' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/20-Blog_Clone_Project/mysite/blog/templates/blog/about.html: -------------------------------------------------------------------------------- 1 | {% extends 'blog/base.html' %} 2 | 3 | {% block content %} 4 |

About me

5 |

Thanks for visiting my blog! Check all this cool stuff about me!

6 | 7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/20-Blog_Clone_Project/mysite/blog/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/20-Blog_Clone_Project/mysite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/20-Blog_Clone_Project/mysite/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/accounts/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/accounts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AccountsConfig(AppConfig): 5 | name = 'accounts' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/accounts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/db.sqlite3 -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/groups/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | 4 | # Register your models here. 5 | class GroupMemberInline(admin.TabularInline): 6 | model = models.GroupMember 7 | 8 | admin.site.register(models.Group) 9 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/groups/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class GroupsConfig(AppConfig): 5 | name = 'groups' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/groups/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/posts/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | 4 | admin.site.register(models.Post) 5 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/posts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PostsConfig(AppConfig): 5 | name = 'posts' 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/posts/templates/posts/post_detail.html: -------------------------------------------------------------------------------- 1 | {% extends "posts/post_base.html" %} 2 | 3 | {% block post_content %} 4 | 5 | {% include "posts/_post.html" %} 6 | 7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/posts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/static/simplesocial/css/master.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | overflow: hidden; 4 | background-color: black; 5 | color:white; 6 | } 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block content %} 3 | 4 |

Welcome to Star Social!

5 | 6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/templates/test.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block content %} 3 |
4 |

You are now logged in!

5 |

Go to Groups

6 | 7 |
8 | 9 | {% endblock %} 10 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/21-Social_Clone_Project/simplesocial/templates/thanks.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block content %} 3 |

Thanks for visiting! Come back soon!

4 | 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/README.md: -------------------------------------------------------------------------------- 1 | # Django-Python-Full-Stack-Web-Developer 2 | Notes and files for the Python full stack developer course! 3 | -------------------------------------------------------------------------------- /Section 1 - Course Introduction/DJANGO_COURSE_2.xx/django_documentation_2_0_9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/DJANGO_COURSE_2.xx/django_documentation_2_0_9.pdf -------------------------------------------------------------------------------- /Section 1 - Course Introduction/Don't Skip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 1 - Course Introduction/Don't Skip.pdf -------------------------------------------------------------------------------- /Section 10 - Javascript Level Two/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "C:\\Users\\DELL\\anaconda3\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 10 - Javascript Level Two/JavaScript Level Two.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 10 - Javascript Level Two/JavaScript Level Two.pdf -------------------------------------------------------------------------------- /Section 11 - Document Object Model/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "C:\\Users\\DELL\\anaconda3\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 11 - Document Object Model/Document Object Model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 11 - Document Object Model/Document Object Model.pdf -------------------------------------------------------------------------------- /Section 11 - Document Object Model/Part 4 - TikTacToe Game Project/Part4_GameCSS.css: -------------------------------------------------------------------------------- 1 | td{ 2 | height: 150px; 3 | width: 150px; 4 | text-align: center; 5 | /*padding: 100px;*/ 6 | border: 5px solid black; 7 | font-size: 100px 8 | } 9 | -------------------------------------------------------------------------------- /Section 12 - jQuery/Part 3 (Project)/Part3_FrontEndProject.css: -------------------------------------------------------------------------------- 1 | .board button { 2 | width: 100px; 3 | height: 100px; 4 | background-color: gray; 5 | border-radius: 50%; 6 | border: 4px solid black; /*this gets rid of bootstrap shadow*/ 7 | margin: 1px; 8 | } 9 | -------------------------------------------------------------------------------- /Section 12 - jQuery/jQuery.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 12 - jQuery/jQuery.pdf -------------------------------------------------------------------------------- /Section 13 - Back-End Introduction/Introduction to the Back-End.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 13 - Back-End Introduction/Introduction to the Back-End.pdf -------------------------------------------------------------------------------- /Section 14 - Python - Level One/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "C:\\Users\\DELL\\anaconda3\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 15- Python - Level Two/Part6_Modules_and_Packages/mymodule.py: -------------------------------------------------------------------------------- 1 | # This is the module we will be importing from! 2 | # Great resource: https://docs.python.org/3/tutorial/modules.html 3 | 4 | def func_in_mymodule(): 5 | print("I am a function inside of the mymodule.py file!") 6 | -------------------------------------------------------------------------------- /Section 15- Python - Level Two/Part7_Name_and_Main/one.py: -------------------------------------------------------------------------------- 1 | def func(): 2 | print("func() ran in one.py") 3 | 4 | print("top-level print inside of one.py") 5 | 6 | if __name__ == "__main__": 7 | print("one.py is being run directly") 8 | else: 9 | print("one.py is being imported into another module") 10 | -------------------------------------------------------------------------------- /Section 15- Python - Level Two/Part7_Name_and_Main/two.py: -------------------------------------------------------------------------------- 1 | import one 2 | 3 | print("top-level in two.py") 4 | 5 | one.func() 6 | 7 | if __name__ == "__main__": 8 | print("two.py is being run directly") 9 | else: 10 | print("two.py is being imported into another module") 11 | -------------------------------------------------------------------------------- /Section 15- Python - Level Two/Python - Level Two.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 15- Python - Level Two/Python - Level Two.pdf -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/Django Level One.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/Django Level One.pdf -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/ProTwo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/ProTwo/__init__.py -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/ProTwo/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/ProTwo/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/ProTwo/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/ProTwo/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/ProTwo/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/ProTwo/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/ProTwo/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/ProTwo/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/appTwo/__init__.py -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/appTwo/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/appTwo/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/appTwo/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/appTwo/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/appTwo/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'AppTwo' 6 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/appTwo/migrations/__init__.py -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/appTwo/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name='index') 6 | ] -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/appTwo/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | from django.http import HttpResponse 3 | 4 | # Create your views here. 5 | def index(request): 6 | dict1 = {'dynamic_para':'This is a dynamic line'} 7 | return render(request, 'AppTwo/index.html', context=dict1) 8 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/ProTwo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/ProTwo/db.sqlite3 -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | name = 'first_app' 6 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/static/first_app/css/mystyle.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/static/first_app/images/djangoguitar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_app/static/first_app/images/djangoguitar.jpg -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/templates/first_app/indexOLD.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | First App 6 | 7 | 8 |

Hello this is index.html!

9 | {{ insert_me }} 10 | 11 | 12 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name='index'), 6 | ] 7 | -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 16 - Django Level One - Basics/first_project/first_project/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/Django Level Two.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/Django Level Two.pdf -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/ProTwo/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/ProTwo/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/ProTwo/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/ProTwo/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/ProTwo/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/ProTwo/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/ProTwo/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/ProTwo/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/appTwo/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import User 3 | # Register your models here. 4 | admin.site.register(User) 5 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'appTwo' 6 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/appTwo/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/appTwo/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/templates/appTwo/help.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HELP PAGE 6 | 7 | 8 | {{ help_insert }} 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/templates/appTwo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Home 6 | 7 | 8 |

Welcome!

9 |

Go to /users to see the list of user information!

10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name="index"), 6 | path('users/', views.users, name="users"), 7 | path('help/', views.help, name='help'), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/ProTwo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/ProTwo/db.sqlite3 -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/db.sqlite3 -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Topic,Webpage,AccessRecord 3 | # Register your models here. 4 | admin.site.register(Topic) 5 | admin.site.register(Webpage) 6 | admin.site.register(AccessRecord) 7 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FirstAppConfig(AppConfig): 5 | name = 'first_app' 6 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/migrations/__init__.py -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/static/first_app/css/mystyle.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: blue; 3 | } 4 | table { 5 | border-collapse: collapse; 6 | } 7 | table, th, td{ 8 | border: 2px solid black; 9 | } 10 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/static/first_app/images/djangoguitar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_app/static/first_app/images/djangoguitar.jpg -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/templates/first_app/indexOLD.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | First App 6 | 7 | 8 |

Hello this is index.html!

9 | {{ insert_me }} 10 | 11 | 12 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name='index'), 6 | ] 7 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_project/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_project/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_project/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_project/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_project/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_project/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_project/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_project/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_project/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_project/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_project/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_project/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_project/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_project/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_project/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_project/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_project/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_project/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/first_project/first_project/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/first_project/first_project/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/ProTwo/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from appTwo.models import User 3 | # Register your models here. 4 | 5 | admin.site.register(User) 6 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'appTwo' 6 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/appTwo/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | class User(models.Model): 5 | first_name = models.CharField(max_length=128) 6 | last_name = models.CharField(max_length=128) 7 | email = models.EmailField(max_length=254,unique=True) -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/templates/appTwo/help.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HELP PAGE 6 | 7 | 8 | {{ help_insert }} 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.help, name='help'), 6 | ] 7 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/newProject/ProTwo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/newProject/ProTwo/db.sqlite3 -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/db.sqlite3 -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testApp/__init__.py -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testApp/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testApp/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testApp/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testApp/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testApp/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from testApp.models import User 3 | # Register your models here. 4 | 5 | admin.site.register(User) 6 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class TestappConfig(AppConfig): 5 | name = 'testApp' 6 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testApp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testApp/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testApp/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | class User(models.Model): 5 | first_name = models.CharField(max_length = 100) 6 | last_name = models.CharField(max_length = 100) 7 | email = models.EmailField(max_length=140, unique=True) -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/static/testApp/css/style.css: -------------------------------------------------------------------------------- 1 | div { 2 | border: 2px solid black; 3 | } 4 | /* ggh */ -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testApp/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from testApp import views 3 | 4 | urlpatterns = [ 5 | path('', views.index), 6 | path('users/', views.users), 7 | ] -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testProject/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testProject/__init__.py -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testProject/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testProject/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testProject/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testProject/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testProject/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testProject/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 17 - Django Level Two/testProject/testProject/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 17 - Django Level Two/testProject/testProject/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/Django Level Three.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/Django Level Three.pdf -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/ProTwo/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import User 3 | # Register your models here. 4 | admin.site.register(User) 5 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApptwoConfig(AppConfig): 5 | name = 'appTwo' 6 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from appTwo.models import User 3 | 4 | class NewUserForm(forms.ModelForm): 5 | class Meta: 6 | model = User 7 | fields = '__all__' -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/migrations/__init__.py -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/appTwo/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/appTwo/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name="index"), 6 | path('users/', views.users, name="users"), 7 | path('help/', views.help, name='help'), 8 | ] 9 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/ProTwo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/ProTwo/db.sqlite3 -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicapp/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicapp/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicapp/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicapp/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicapp/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicapp/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicappConfig(AppConfig): 5 | name = 'basicapp' 6 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicapp/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicforms/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicforms/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicforms/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicforms/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicforms/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicforms/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/basicforms/basicforms/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/basicforms/basicforms/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/db.sqlite3 -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyApp/__init__.py -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyApp/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyApp/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyApp/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyApp/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyApp/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class StudyappConfig(AppConfig): 5 | name = 'studyApp' 6 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | 3 | class FormName(forms.Form): 4 | name = forms.CharField() 5 | email = forms.CharField() 6 | text = forms.CharField(widget=forms.Textarea) -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyApp/migrations/__init__.py -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyApp/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyApp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyProject/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyProject/__init__.py -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyProject/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyProject/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyProject/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyProject/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyProject/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyProject/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 18 - Django Level Three/studyProject/studyProject/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 18 - Django Level Three/studyProject/studyProject/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/Django Level Four.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/Django Level Four.pdf -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__init__.py -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicAppConfig(AppConfig): 5 | name = 'basic_app' 6 | -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/migrations/__init__.py -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | # SuperUserInformation 3 | # User: Jose 4 | # Email: training@pieriandata.com 5 | # Password: testpassword 6 | 7 | # Create your models here. 8 | -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/templates/basic_app/other.html: -------------------------------------------------------------------------------- 1 | 2 | {% extends "basic_app/base.html" %} 3 | {% block body_block %} 4 |

This is an example of template inheritance!

5 |

Officially this is the other.html page!

6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/templatetags/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/templatetags/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/templatetags/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/templatetags/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/templatetags/__pycache__/my_extras.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/templatetags/__pycache__/my_extras.cpython-36.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/templatetags/__pycache__/my_extras.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/basic_app/templatetags/__pycache__/my_extras.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/templatetags/my_extras.py: -------------------------------------------------------------------------------- 1 | from django import template 2 | register = template.Library() 3 | 4 | @register.filter(name='cutout') 5 | def cutout(value, arg): 6 | return value.replace(arg, '') 7 | -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/basic_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | # SET THE NAMESPACE! 5 | app_name = 'basic_app' 6 | 7 | urlpatterns=[ 8 | path('relative/',views.relative,name='relative'), 9 | path('other/',views.other,name='other'), 10 | ] 11 | -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/db.sqlite3 -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/learning_templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/learning_templates/__init__.py -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 19 - Django Level Four/learning_templates/learning_templates/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Section 2 - Front-End Introduction/Websites Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 2 - Front-End Introduction/Websites Overview.pdf -------------------------------------------------------------------------------- /Section 20 - Django Level Five/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "C:\\Users\\DELL\\anaconda3\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 20 - Django Level Five/Django Level Five.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/Django Level Five.pdf -------------------------------------------------------------------------------- /Section 20 - Django Level Five/delt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/delt.txt -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "C:\\Users\\DELL\\anaconda3\\envs\\scrapperEnv\\python.exe" 3 | } -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__init__.py -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import UserProfileInfo, User 3 | 4 | # Register your models here. 5 | admin.site.register(UserProfileInfo) 6 | -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicAppConfig(AppConfig): 5 | name = 'basic_app' 6 | -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/migrations/__init__.py -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/basic_app/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/basic_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/db.sqlite3 -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/learning_users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/learning_users/__init__.py -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/learning_users/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/learning_users/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/learning_users/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/learning_users/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/learning_users/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/learning_users/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/learning_users/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/learning_users/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/learning_users/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/learning_users/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/learning_users/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/learning_users/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/learning_users/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/learning_users/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/learning_users/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/learning_users/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Section 20 - Django Level Five/learning_users/media/basic_app/profile_pics/combination-lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 20 - Django Level Five/learning_users/media/basic_app/profile_pics/combination-lock.jpg -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/Advanced Django CBV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/Advanced Django CBV.pdf -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/advcbv/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import School,Student 3 | # Register your models here. 4 | admin.site.register(School) 5 | admin.site.register(Student) 6 | -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BasicAppConfig(AppConfig): 5 | name = 'basic_app' 6 | -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/basic_app/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/basic_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/advcbv/db.sqlite3 -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/advcbv/templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block body_block %} 4 |

Welcome to the index page!

5 |

Here is your injected content: {{ injectme }}

6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/db.sqlite3 -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block body %} 4 | 5 |

Index page

6 | 7 | 8 | {% endblock %} -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__init__.py -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import School,Student 3 | # Register your models here. 4 | admin.site.register(School) 5 | admin.site.register(Student) 6 | -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class TestAppConfig(AppConfig): 5 | name = 'test_app' 6 | -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/migrations/__init__.py -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/test_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/testadvcbv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/testadvcbv/__init__.py -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/testadvcbv/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/testadvcbv/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/testadvcbv/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/testadvcbv/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/testadvcbv/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/testadvcbv/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Section 22 - Advanced Topics - CBVs/testadvcbv/testadvcbv/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 22 - Advanced Topics - CBVs/testadvcbv/testadvcbv/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Section 3 - HTML Level One - Basics/HTML Level One.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 3 - HTML Level One - Basics/HTML Level One.pdf -------------------------------------------------------------------------------- /Section 3 - HTML Level One - Basics/HTML_LEVEL_ONE/django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 3 - HTML Level One - Basics/HTML_LEVEL_ONE/django.png -------------------------------------------------------------------------------- /Section 4 - HTML Level Two - Advanced/HTML Level Two.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 4 - HTML Level Two - Advanced/HTML Level Two.pdf -------------------------------------------------------------------------------- /Section 5 - CSS Level One - Basics/CSS Level One.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 5 - CSS Level One - Basics/CSS Level One.pdf -------------------------------------------------------------------------------- /Section 6 - CSS Level Two - Advanced/CSS Level Two.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 6 - CSS Level Two - Advanced/CSS Level Two.pdf -------------------------------------------------------------------------------- /Section 8 - Bootstrap Overview/bootstrap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 8 - Bootstrap Overview/bootstrap.pdf -------------------------------------------------------------------------------- /Section 9 - Javascript Level One - Basics/JavaScript Level One.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/Section 9 - Javascript Level One - Basics/JavaScript Level One.pdf -------------------------------------------------------------------------------- /Section 9 - Javascript Level One - Basics/Part 2 (alert, console.log, prompt)/Part2.js: -------------------------------------------------------------------------------- 1 | alert("Welcome to your bank's website!") 2 | var deposit = prompt("How much would you like to deposit today?") 3 | alert("You've deposited: "+deposit+" into your account.") 4 | console.log("You are a cool person!") 5 | -------------------------------------------------------------------------------- /Section 9 - Javascript Level One - Basics/Part 3 (Exercise)/myjs.js: -------------------------------------------------------------------------------- 1 | var weight_lbs = prompt('Enter your weight in lbs:') 2 | var weight_kg = weight_lbs*0.454 3 | alert('Conversion in Kilograms: '+ weight_kg) 4 | console.log('Converson Completed') -------------------------------------------------------------------------------- /delt.txt: -------------------------------------------------------------------------------- 1 | asdasd 2 | -------------------------------------------------------------------------------- /html,css,bootstrap,javascript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/html,css,bootstrap,javascript.pdf -------------------------------------------------------------------------------- /python and django (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsiddh/Python-and-Django-Full-Stack-Web-Developer-Bootcamp/296e089581735973d9d0a04a38e8ed3e45dd0845/python and django (1).pdf --------------------------------------------------------------------------------