├── APIs ├── Convert booklist API project to DRF │ └── project │ │ ├── BookList │ │ ├── BookList │ │ │ ├── __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 │ │ ├── BookListDRF │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── serializers.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 │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── Pipfile │ │ ├── Pipfile.lock │ │ ├── db.sqlite3 │ │ └── manage.py │ │ ├── C6M2L1 - Convert Booklist API Project to DRF.md │ │ └── assets │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── urls.png ├── Django REST framework.jpg ├── Graded assessment 1.jpg ├── Graded assessment 2.jpg ├── Graded assessment 3.jpg ├── Graded assessment 4.jpg ├── Graded assessment 5.jpg ├── Little Lemon API 2.zip ├── Little Lemon API 3.zip ├── Little Lemon API 4.zip ├── Little Lemon API.zip ├── LittleLemon.zip ├── LittleLemon │ ├── LittleLemon │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── settings.cpython-38.pyc │ │ │ ├── settings.cpython-39.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── wsgi.cpython-38.pyc │ │ │ └── wsgi.cpython-39.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── LittleLemonDRF │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-38.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── models.cpython-38.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── serializers.cpython-38.pyc │ │ │ ├── serializers.cpython-39.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── views.cpython-38.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_order_remove_menuitem_inventory_menuitem_featured_and_more.py │ │ │ ├── 0003_alter_menuitem_category.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_order_remove_menuitem_inventory_menuitem_featured_and_more.cpython-38.pyc │ │ │ │ ├── 0002_order_remove_menuitem_inventory_menuitem_featured_and_more.cpython-39.pyc │ │ │ │ ├── 0003_alter_menuitem_category.cpython-39.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── Pipfile │ ├── Pipfile.lock │ ├── db.sqlite3 │ └── manage.py ├── Peer-graded Assignment.jpg ├── REST APIs.jpg ├── Restaurant menu API using serialization │ ├── C6M2L2 - Restaurant Menu API using Serialization.md │ ├── LittleLemon │ │ ├── LittleLemon │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── settings.cpython-38.pyc │ │ │ │ └── urls.cpython-38.pyc │ │ │ ├── asgi.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── LittleLemonDRF │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── serializers.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 │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── Pipfile │ │ ├── Pipfile.lock │ │ ├── db.sqlite3 │ │ └── manage.py │ └── assets │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png ├── Restaurant menu API │ └── project │ │ ├── C6M3L1 - Restaurant Menu API - Filtering, Ordering and Searching.md │ │ ├── LittleLemon │ │ ├── LittleLemon │ │ │ ├── __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 │ │ ├── LittleLemonDRF │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── serializers.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 │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── Pipfile │ │ ├── Pipfile.lock │ │ ├── db.sqlite3 │ │ └── manage.py │ │ └── assets │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── 8.png ├── Securing an API in Django REST framework.jpg └── Your first API │ ├── BookList │ ├── BookList │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── settings.cpython-38.pyc │ │ │ └── urls.cpython-38.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── BookListAPI │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.cpython-38.pyc │ │ │ └── models.cpython-38.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── Pipfile │ ├── Pipfile.lock │ ├── db.sqlite3 │ └── manage.py │ ├── C6M1L4 Item 05 - Your First API.md │ └── assets │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ └── 8.png ├── Back-End Developer Capstone ├── Final Graded Assessment 4A.png ├── Final Graded Assessment 4B.png ├── Final Graded Assessment 5A.png ├── Final Graded Assessment 5B.png ├── Final graded assessment 1.jpg ├── Final graded assessment 2.jpg ├── Final graded assessment 3.jpg ├── Peer-graded Assignment.jpg ├── Peer-graded Assignment.png ├── Project Functionality 1.png ├── Project Functionality 2.png ├── Project Functionality 3.png ├── Project Functionality.jpg ├── Security and Testing 1.png ├── Security and Testing 2.png ├── Security and Testing 3.png ├── Security and Testing 4.png ├── Security and Testing 5.png ├── Security and Testing 6.png ├── Security and Testing.jpg ├── Solution Little Lemon Web Application.jpg ├── Starting the Project 1.png ├── Starting the Project 2.png ├── Starting the Project 3.png ├── Starting the Project.jpg ├── Static routes assets │ ├── static │ │ ├── css │ │ │ └── style.css │ │ └── img │ │ │ ├── Bruschetta.jpg │ │ │ ├── Grill B.jpg │ │ │ ├── Grill.jpg │ │ │ ├── Grilled fish B.jpg │ │ │ ├── Grilled fish C.jpg │ │ │ ├── Grilled fish.jpg │ │ │ ├── Mario and Adrian b.jpg │ │ │ ├── favicon.ico │ │ │ ├── greek salad.jpg │ │ │ ├── head_chef.jpg │ │ │ ├── lemon dessert B.jpg │ │ │ ├── lemon dessert.jpg │ │ │ ├── logo.png │ │ │ ├── logo_footer.png │ │ │ ├── mario-and-adrian.jpg │ │ │ ├── pasta.jpg │ │ │ ├── restaurant chef C.jpg │ │ │ ├── restaurant food B.jpg │ │ │ ├── restaurant food.jpg │ │ │ ├── restaurant inside alternative.jpg │ │ │ ├── restaurant_inside.jpg │ │ │ └── salad.jpg │ └── templates │ │ └── index.html └── capstone │ └── littlelemon │ ├── db.sqlite3 │ ├── littlelemon │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ ├── restaurant │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── serializers.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── serializers.py │ ├── static │ │ ├── css │ │ │ └── style.css │ │ └── img │ │ │ ├── Bruschetta.jpg │ │ │ ├── Grill B.jpg │ │ │ ├── Grill.jpg │ │ │ ├── Grilled fish B.jpg │ │ │ ├── Grilled fish C.jpg │ │ │ ├── Grilled fish.jpg │ │ │ ├── Mario and Adrian b.jpg │ │ │ ├── favicon.ico │ │ │ ├── greek salad.jpg │ │ │ ├── head_chef.jpg │ │ │ ├── lemon dessert B.jpg │ │ │ ├── lemon dessert.jpg │ │ │ ├── logo.png │ │ │ ├── logo_footer.png │ │ │ ├── mario-and-adrian.jpg │ │ │ ├── pasta.jpg │ │ │ ├── restaurant chef C.jpg │ │ │ ├── restaurant food B.jpg │ │ │ ├── restaurant food.jpg │ │ │ ├── restaurant inside alternative.jpg │ │ │ ├── restaurant_inside.jpg │ │ │ └── salad.jpg │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── static │ ├── css │ │ └── style.css │ └── img │ │ ├── Bruschetta.jpg │ │ ├── Grill B.jpg │ │ ├── Grill.jpg │ │ ├── Grilled fish B.jpg │ │ ├── Grilled fish C.jpg │ │ ├── Grilled fish.jpg │ │ ├── Mario and Adrian b.jpg │ │ ├── favicon.ico │ │ ├── greek salad.jpg │ │ ├── head_chef.jpg │ │ ├── lemon dessert B.jpg │ │ ├── lemon dessert.jpg │ │ ├── logo.png │ │ ├── logo_footer.png │ │ ├── mario-and-adrian.jpg │ │ ├── pasta.jpg │ │ ├── restaurant chef C.jpg │ │ ├── restaurant food B.jpg │ │ ├── restaurant food.jpg │ │ ├── restaurant inside alternative.jpg │ │ ├── restaurant_inside.jpg │ │ └── salad.jpg │ ├── templates │ └── index.html │ └── tests │ └── test-models.py ├── Coding Interview Preparation ├── Final graded assessment 1.jpg ├── Final graded assessment 2.jpg ├── Final graded assessment 3.jpg ├── Final graded assessment 4.jpg ├── Introduction to algorithms.jpg ├── Introduction to data structures.jpg └── Introduction to the coding interview.jpg ├── Django Web Framework ├── Connecting to a Database │ ├── M3L4 - Connecting to a Database.md │ ├── assets │ │ ├── createuser.png │ │ ├── databases.png │ │ ├── directory.png │ │ ├── mysql.png │ │ └── terminal.png │ └── workplace │ │ └── myproject │ │ ├── feedback │ │ ├── manage.py │ │ ├── myapp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.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 │ │ └── myproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-310.pyc │ │ ├── settings.cpython-38.pyc │ │ └── urls.cpython-38.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── Creating Templates │ ├── M4L1 - Creating Templates.md │ ├── assets │ │ ├── about.png │ │ ├── files.png │ │ ├── menu.png │ │ └── templates.png │ └── workplace │ │ └── myproject │ │ ├── db.sqlite3 │ │ ├── manage.py │ │ ├── myapp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── admin.cpython-310.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.cpython-310.pyc │ │ │ ├── apps.cpython-38.pyc │ │ │ ├── models.cpython-310.pyc │ │ │ ├── models.cpython-38.pyc │ │ │ ├── urls.cpython-310.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── views.cpython-310.pyc │ │ │ └── views.cpython-38.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-310.pyc │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── models.py │ │ ├── static │ │ │ └── img │ │ │ │ └── dessert.jpg │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── settings.cpython-310.pyc │ │ │ ├── settings.cpython-38.pyc │ │ │ ├── urls.cpython-310.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── wsgi.cpython-310.pyc │ │ │ └── wsgi.cpython-38.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── templates │ │ ├── about.html │ │ └── menu.html ├── Creating URLs and Mapping to Views │ ├── M2L2 - Mapping URLs with Params.md │ ├── assets │ │ ├── lemonade.png │ │ ├── mocha.png │ │ └── tea.png │ └── workplace │ │ └── myproject │ │ ├── manage.py │ │ ├── myapp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.cpython-38.pyc │ │ │ └── models.cpython-38.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ └── myproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-310.pyc │ │ └── settings.cpython-38.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── Creating a view and URL configuration │ ├── M2L1 Creating a view and URL configuration.md │ ├── assets │ │ ├── final.png │ │ ├── new_terminal.png │ │ ├── urls.png │ │ └── views.png │ └── workplace │ │ └── myproject │ │ ├── manage.py │ │ ├── myapp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.cpython-38.pyc │ │ │ └── models.cpython-38.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── url.py │ │ └── views.py │ │ └── myproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-310.pyc │ │ └── settings.cpython-38.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── Django Web Framework 1.jpg ├── Django Web Framework 2.jpg ├── Django Web Framework 3.jpg ├── Django Web Framework 4.jpg ├── Django Web Framework 5.jpg ├── Django Web Framework 6.jpg ├── Introduction to Django.jpg ├── Mapping URLs with Params │ ├── M2L2 - Mapping URLs with Params.md │ ├── assets │ │ ├── lemonade.png │ │ ├── mocha.png │ │ └── tea.png │ └── workplace │ │ └── myproject │ │ ├── manage.py │ │ ├── myapp │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ └── myproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── settings.cpython-310.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── Menu items.docx ├── Models and migrations │ ├── M3L1 - Models and migrations EXT.md │ ├── assets │ │ ├── db.png │ │ ├── dir.png │ │ ├── makemig.png │ │ └── mig.png │ └── workplace │ │ └── myproject │ │ ├── db.sqlite3 │ │ ├── manage.py │ │ ├── myapp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.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 │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ └── myproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-310.pyc │ │ ├── settings.cpython-38.pyc │ │ └── urls.cpython-38.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── Models using Foreign Keys │ ├── M3L1 - Models using Foreign Keys.md │ ├── assets │ │ ├── 1.png │ │ ├── 2.png │ │ ├── dir.png │ │ ├── migrations.png │ │ └── terminal.png │ └── workplace │ │ └── myproject │ │ ├── db.sqlite3 │ │ ├── manage.py │ │ ├── myapp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.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 │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ └── myproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-310.pyc │ │ ├── settings.cpython-38.pyc │ │ └── urls.cpython-38.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── Models.jpg ├── Peer-graded Assignment.jpg ├── Templates.jpg ├── Using Django Admin │ ├── M3L3 - Using Django Admin.md │ ├── assets │ │ ├── directory.png │ │ ├── djangoadmin.png │ │ ├── migration.png │ │ ├── password.png │ │ ├── permissions.png │ │ ├── terminal.png │ │ └── username.png │ └── workplace │ │ └── myproject │ │ ├── db.sqlite3 │ │ ├── manage.py │ │ ├── myapp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.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 │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ └── myproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-310.pyc │ │ ├── settings.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ └── wsgi.cpython-38.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── Views.jpg ├── Working with Forms │ ├── M3L2 Working with Forms.md │ ├── assets │ │ ├── db.png │ │ ├── dbdir.png │ │ └── formview.png │ └── workplace │ │ └── myproject │ │ ├── db.sqlite3 │ │ ├── manage.py │ │ ├── myapp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── admin.cpython-310.pyc │ │ │ ├── admin.cpython-38.pyc │ │ │ ├── apps.cpython-310.pyc │ │ │ ├── apps.cpython-38.pyc │ │ │ ├── forms.cpython-38.pyc │ │ │ ├── models.cpython-310.pyc │ │ │ ├── models.cpython-38.pyc │ │ │ ├── urls.cpython-310.pyc │ │ │ ├── urls.cpython-38.pyc │ │ │ ├── views.cpython-310.pyc │ │ │ └── views.cpython-38.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── models.py │ │ ├── templates │ │ │ └── booking.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ └── myproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-310.pyc │ │ ├── settings.cpython-38.pyc │ │ ├── urls.cpython-310.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── wsgi.cpython-310.pyc │ │ └── wsgi.cpython-38.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── littlelemon.zip └── littlelemon │ ├── db.sqlite3 │ ├── littlelemon │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-310.pyc │ │ ├── settings.cpython-38.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-310.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-38.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── restaurant │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-38.pyc │ ├── admin.cpython-39.pyc │ ├── apps.cpython-310.pyc │ ├── apps.cpython-38.pyc │ ├── apps.cpython-39.pyc │ ├── forms.cpython-38.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-38.pyc │ ├── models.cpython-39.pyc │ ├── urls.cpython-38.pyc │ ├── urls.cpython-39.pyc │ ├── views.cpython-38.pyc │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_menu_menu_item_description.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── 0001_initial.cpython-39.pyc │ │ ├── 0002_menu_menu_item_description.cpython-38.pyc │ │ ├── __init__.cpython-38.pyc │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── static │ ├── css │ │ └── style.css │ └── img │ │ ├── Grill B.jpg │ │ ├── Grill.jpg │ │ ├── Grilled fish B.jpg │ │ ├── Grilled fish C.jpg │ │ ├── Mario and Adrian b.jpg │ │ ├── favicon.ico │ │ ├── head_chef.jpg │ │ ├── lemon dessert B.jpg │ │ ├── logo.png │ │ ├── logo_footer.png │ │ ├── mario-and-adrian.jpg │ │ ├── menu_items │ │ ├── Bruschetta.jpg │ │ ├── Greek salad.jpg │ │ ├── Grilled fish.jpg │ │ └── Lemon dessert.jpg │ │ ├── pasta.jpg │ │ ├── restaurant chef C.jpg │ │ ├── restaurant food B.jpg │ │ ├── restaurant food.jpg │ │ ├── restaurant inside alternative.jpg │ │ ├── restaurant_inside.jpg │ │ └── salad.jpg │ ├── templates │ ├── about.html │ ├── base.html │ ├── book.html │ ├── index.html │ ├── menu.html │ ├── menu_item.html │ └── partials │ │ ├── _footer.html │ │ └── _header.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── Introduction to Back-End Development ├── Course 1 Assessment 2.jpg ├── Course 1 Assessment 3.jpg ├── Course 1 Assessment.jpg ├── Create and style a webpage │ ├── README.md │ ├── index.html │ ├── photo.jpg │ └── styles.css ├── Get started with Web Development.jpg ├── Introduction to HTML and CSS.jpg ├── UI Frameworks.jpg ├── index.html └── styles.css ├── Introduction to Databases for Back-End Development ├── (CRUD) Operations.jpg ├── Database design.jpg ├── Graded Assessment 1.jpg ├── Graded Assessment 2.jpg ├── Graded Assessment 3.jpg ├── Introduction to Databases.jpg ├── SQL operators and sorting and filtering data.jpg ├── SQLAnswersFinal.txt └── project │ ├── CreateDatabaseImages │ ├── picture1.PNG │ ├── picture2.PNG │ ├── picture3.PNG │ ├── picture4.PNG │ ├── picture5.PNG │ └── picture6.PNG │ ├── LabInstructions.md │ ├── README.md │ └── images │ ├── button.png │ ├── createdb.png │ ├── mysql.png │ └── terminal.png ├── Programming in Python ├── Abstract Classes │ ├── README.md │ └── bank.py ├── Basic Programming with Python.jpg ├── End-of-Course Graded Assessment.jpg ├── Functions, loops and data structures │ ├── README.md │ └── ordering_system.py ├── Getting started with Python.jpg ├── Import and Scope │ ├── README.md │ ├── __pycache__ │ │ └── employee.cpython-38.pyc │ ├── employee.json │ ├── employee.py │ └── jsongenerator.py ├── Mapping key-values │ ├── README.md │ └── comprehensions.py ├── Modules packages.jpg ├── Programming Paradigms.jpg ├── Quiz solutions.ipynb ├── Read in data │ ├── README.md │ ├── file_ops.py │ └── sampletext.txt ├── Type casting input │ ├── README.md │ ├── exercise1.py │ └── exercise2.py ├── Write a test │ ├── README.md │ ├── __pycache__ │ │ ├── spellcheck.cpython-38.pyc │ │ └── test_spellcheck.cpython-38-pytest-7.1.2.pyc │ ├── spellcheck.py │ └── test_spellcheck.py └── names.txt ├── README.md ├── The Full Stack ├── Connect-the-Little-Lemon-backend-to-MySQL.zip ├── Display-the-Little-Lemon-available-booking-times.zip ├── Front-end technologies.jpg ├── Graded assessment 1.jpg ├── Graded assessment 2.jpg ├── Graded assessment 3.jpg ├── Introduction to the full stack.jpg ├── Little Lemon Booking System.jpg ├── Little Lemon booking system.zip ├── Little Lemon booking system │ ├── Pipfile │ ├── Pipfile.lock │ ├── db.sqlite3 │ ├── littlelemon │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── settings.cpython-310.pyc │ │ │ ├── urls.cpython-310.pyc │ │ │ └── wsgi.cpython-310.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ └── restaurant │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── admin.cpython-310.pyc │ │ ├── apps.cpython-310.pyc │ │ ├── forms.cpython-310.pyc │ │ ├── models.cpython-310.pyc │ │ ├── urls.cpython-310.pyc │ │ └── views.cpython-310.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_menu_menu_item_description.py │ │ ├── 0003_remove_booking_comment_remove_booking_guest_number_and_more.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-310.pyc │ │ │ ├── 0002_menu_menu_item_description.cpython-310.pyc │ │ │ ├── 0003_remove_booking_comment_remove_booking_guest_number_and_more.cpython-310.pyc │ │ │ └── __init__.cpython-310.pyc │ │ ├── models.py │ │ ├── static │ │ ├── css │ │ │ └── style.css │ │ └── img │ │ │ ├── Grill B.jpg │ │ │ ├── Grill.jpg │ │ │ ├── Grilled fish B.jpg │ │ │ ├── Grilled fish C.jpg │ │ │ ├── Mario and Adrian b.jpg │ │ │ ├── favicon.ico │ │ │ ├── head_chef.jpg │ │ │ ├── lemon dessert B.jpg │ │ │ ├── logo.png │ │ │ ├── logo_footer.png │ │ │ ├── mario-and-adrian.jpg │ │ │ ├── menu_items │ │ │ ├── Bruschetta.jpg │ │ │ ├── Greek salad.jpg │ │ │ ├── Grilled fish.jpg │ │ │ └── Lemon dessert.jpg │ │ │ ├── pasta.jpg │ │ │ ├── restaurant chef C.jpg │ │ │ ├── restaurant food B.jpg │ │ │ ├── restaurant food.jpg │ │ │ ├── restaurant inside alternative.jpg │ │ │ ├── restaurant_inside.jpg │ │ │ └── salad.jpg │ │ ├── templates │ │ ├── about.html │ │ ├── base.html │ │ ├── book.html │ │ ├── bookings.html │ │ ├── index.html │ │ ├── menu.html │ │ ├── menu_item.html │ │ └── partials │ │ │ ├── _footer.html │ │ │ └── _header.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── Production environments.jpg ├── Set-up-the-Little-Lemon-booking-API.zip └── The full stack using Django.jpg └── Version Control ├── Command Line.jpg ├── End of course 2.jpg ├── End-of-course graded assessment.jpg ├── Software collaboration.jpg └── Working with Git.jpg /APIs/Convert booklist API project to DRF/project/BookList/BookList/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookList/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookList/asgi.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookList/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookList/settings.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookList/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookList/urls.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookList/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookList/wsgi.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/admin.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/apps.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/models.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/serializers.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/tests.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/urls.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/BookListDRF/views.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/Pipfile -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/Pipfile.lock -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/db.sqlite3 -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/BookList/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/BookList/manage.py -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/assets/1.png -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/assets/2.png -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/assets/3.png -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/assets/4.png -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/assets/5.png -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/assets/6.png -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/assets/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/assets/7.png -------------------------------------------------------------------------------- /APIs/Convert booklist API project to DRF/project/assets/urls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Convert booklist API project to DRF/project/assets/urls.png -------------------------------------------------------------------------------- /APIs/Django REST framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Django REST framework.jpg -------------------------------------------------------------------------------- /APIs/Graded assessment 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Graded assessment 1.jpg -------------------------------------------------------------------------------- /APIs/Graded assessment 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Graded assessment 2.jpg -------------------------------------------------------------------------------- /APIs/Graded assessment 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Graded assessment 3.jpg -------------------------------------------------------------------------------- /APIs/Graded assessment 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Graded assessment 4.jpg -------------------------------------------------------------------------------- /APIs/Graded assessment 5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Graded assessment 5.jpg -------------------------------------------------------------------------------- /APIs/Little Lemon API 2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Little Lemon API 2.zip -------------------------------------------------------------------------------- /APIs/Little Lemon API 3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Little Lemon API 3.zip -------------------------------------------------------------------------------- /APIs/Little Lemon API 4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Little Lemon API 4.zip -------------------------------------------------------------------------------- /APIs/Little Lemon API.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Little Lemon API.zip -------------------------------------------------------------------------------- /APIs/LittleLemon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon.zip -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/asgi.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/settings.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/urls.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemon/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemon/wsgi.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/serializers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/serializers.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/serializers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/serializers.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/admin.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/apps.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/migrations/0001_initial.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/migrations/0003_alter_menuitem_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/migrations/0003_alter_menuitem_category.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/models.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/serializers.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/tests.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/urls.py -------------------------------------------------------------------------------- /APIs/LittleLemon/LittleLemonDRF/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/LittleLemonDRF/views.py -------------------------------------------------------------------------------- /APIs/LittleLemon/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/Pipfile -------------------------------------------------------------------------------- /APIs/LittleLemon/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/Pipfile.lock -------------------------------------------------------------------------------- /APIs/LittleLemon/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/db.sqlite3 -------------------------------------------------------------------------------- /APIs/LittleLemon/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/LittleLemon/manage.py -------------------------------------------------------------------------------- /APIs/Peer-graded Assignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Peer-graded Assignment.jpg -------------------------------------------------------------------------------- /APIs/REST APIs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/REST APIs.jpg -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemon/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemon/asgi.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemon/settings.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemon/urls.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemon/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemon/wsgi.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/admin.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/apps.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/models.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/serializers.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/tests.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/urls.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/LittleLemonDRF/views.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/Pipfile -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/Pipfile.lock -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/db.sqlite3 -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/LittleLemon/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/LittleLemon/manage.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/1.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/10.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/11.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/12.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/2.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/3.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/4.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/5.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/6.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/7.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/8.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API using serialization/assets/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API using serialization/assets/9.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemon/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemon/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemon/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemon/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemon/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemon/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemon/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemon/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemon/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemon/asgi.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemon/settings.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemon/urls.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemon/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemon/wsgi.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/admin.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/apps.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/migrations/0001_initial.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/models.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/serializers.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/tests.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/urls.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/LittleLemonDRF/views.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/Pipfile -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/Pipfile.lock -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/db.sqlite3 -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/LittleLemon/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/LittleLemon/manage.py -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/assets/1.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/assets/2.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/assets/3.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/assets/4.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/assets/5.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/assets/6.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/assets/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/assets/7.png -------------------------------------------------------------------------------- /APIs/Restaurant menu API/project/assets/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Restaurant menu API/project/assets/8.png -------------------------------------------------------------------------------- /APIs/Securing an API in Django REST framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Securing an API in Django REST framework.jpg -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookList/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookList/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookList/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookList/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookList/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookList/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookList/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookList/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookList/asgi.py -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookList/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookList/settings.py -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookList/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookList/urls.py -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookList/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookList/wsgi.py -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookListAPI/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookListAPI/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookListAPI/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookListAPI/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookListAPI/admin.py -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookListAPI/apps.py -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookListAPI/models.py -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookListAPI/tests.py -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookListAPI/urls.py -------------------------------------------------------------------------------- /APIs/Your first API/BookList/BookListAPI/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/BookListAPI/views.py -------------------------------------------------------------------------------- /APIs/Your first API/BookList/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/Pipfile -------------------------------------------------------------------------------- /APIs/Your first API/BookList/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/Pipfile.lock -------------------------------------------------------------------------------- /APIs/Your first API/BookList/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/db.sqlite3 -------------------------------------------------------------------------------- /APIs/Your first API/BookList/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/BookList/manage.py -------------------------------------------------------------------------------- /APIs/Your first API/C6M1L4 Item 05 - Your First API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/C6M1L4 Item 05 - Your First API.md -------------------------------------------------------------------------------- /APIs/Your first API/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/assets/1.png -------------------------------------------------------------------------------- /APIs/Your first API/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/assets/2.png -------------------------------------------------------------------------------- /APIs/Your first API/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/assets/3.png -------------------------------------------------------------------------------- /APIs/Your first API/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/assets/4.png -------------------------------------------------------------------------------- /APIs/Your first API/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/assets/5.png -------------------------------------------------------------------------------- /APIs/Your first API/assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/assets/6.png -------------------------------------------------------------------------------- /APIs/Your first API/assets/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/assets/7.png -------------------------------------------------------------------------------- /APIs/Your first API/assets/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/APIs/Your first API/assets/8.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Final Graded Assessment 4A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Final Graded Assessment 4A.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Final Graded Assessment 4B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Final Graded Assessment 4B.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Final Graded Assessment 5A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Final Graded Assessment 5A.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Final Graded Assessment 5B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Final Graded Assessment 5B.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Final graded assessment 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Final graded assessment 1.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Final graded assessment 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Final graded assessment 2.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Final graded assessment 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Final graded assessment 3.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Peer-graded Assignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Peer-graded Assignment.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Peer-graded Assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Peer-graded Assignment.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Project Functionality 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Project Functionality 1.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Project Functionality 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Project Functionality 2.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Project Functionality 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Project Functionality 3.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Project Functionality.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Project Functionality.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Security and Testing 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Security and Testing 1.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Security and Testing 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Security and Testing 2.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Security and Testing 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Security and Testing 3.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Security and Testing 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Security and Testing 4.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Security and Testing 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Security and Testing 5.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Security and Testing 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Security and Testing 6.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Security and Testing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Security and Testing.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Solution Little Lemon Web Application.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Solution Little Lemon Web Application.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Starting the Project 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Starting the Project 1.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Starting the Project 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Starting the Project 2.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Starting the Project 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Starting the Project 3.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Starting the Project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Starting the Project.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/css/style.css -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/Bruschetta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/Bruschetta.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/Grill B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/Grill B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/Grill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/Grill.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/Grilled fish B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/Grilled fish B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/Grilled fish C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/Grilled fish C.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/Grilled fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/Grilled fish.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/Mario and Adrian b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/Mario and Adrian b.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/favicon.ico -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/greek salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/greek salad.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/head_chef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/head_chef.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/lemon dessert B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/lemon dessert B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/lemon dessert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/lemon dessert.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/logo.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/logo_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/logo_footer.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/mario-and-adrian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/mario-and-adrian.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/pasta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/pasta.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/restaurant chef C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/restaurant chef C.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/restaurant food B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/restaurant food B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/restaurant food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/restaurant food.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/restaurant inside alternative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/restaurant inside alternative.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/restaurant_inside.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/restaurant_inside.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/static/img/salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/static/img/salad.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/Static routes assets/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/Static routes assets/templates/index.html -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/db.sqlite3 -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/littlelemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/littlelemon/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/littlelemon/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/littlelemon/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/littlelemon/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/littlelemon/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/littlelemon/asgi.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/littlelemon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/littlelemon/settings.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/littlelemon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/littlelemon/urls.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/littlelemon/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/littlelemon/wsgi.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/manage.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/admin.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/apps.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/migrations/0001_initial.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/models.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/serializers.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/css/style.css -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Bruschetta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Bruschetta.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Grill B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Grill B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Grill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Grill.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Grilled fish B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Grilled fish B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Grilled fish C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Grilled fish C.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Grilled fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/Grilled fish.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/favicon.ico -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/greek salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/greek salad.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/head_chef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/head_chef.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/lemon dessert B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/lemon dessert B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/lemon dessert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/lemon dessert.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/logo.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/logo_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/logo_footer.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/mario-and-adrian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/mario-and-adrian.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/pasta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/pasta.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/restaurant food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/restaurant food.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/static/img/salad.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/tests.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/urls.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/restaurant/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/restaurant/views.py -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/css/style.css -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/Bruschetta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/Bruschetta.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/Grill B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/Grill B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/Grill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/Grill.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/Grilled fish B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/Grilled fish B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/Grilled fish C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/Grilled fish C.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/Grilled fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/Grilled fish.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/Mario and Adrian b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/Mario and Adrian b.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/favicon.ico -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/greek salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/greek salad.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/head_chef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/head_chef.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/lemon dessert B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/lemon dessert B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/lemon dessert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/lemon dessert.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/logo.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/logo_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/logo_footer.png -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/mario-and-adrian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/mario-and-adrian.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/pasta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/pasta.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/restaurant chef C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/restaurant chef C.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/restaurant food B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/restaurant food B.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/restaurant food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/restaurant food.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/restaurant_inside.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/restaurant_inside.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/static/img/salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/static/img/salad.jpg -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/templates/index.html -------------------------------------------------------------------------------- /Back-End Developer Capstone/capstone/littlelemon/tests/test-models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Back-End Developer Capstone/capstone/littlelemon/tests/test-models.py -------------------------------------------------------------------------------- /Coding Interview Preparation/Final graded assessment 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Coding Interview Preparation/Final graded assessment 1.jpg -------------------------------------------------------------------------------- /Coding Interview Preparation/Final graded assessment 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Coding Interview Preparation/Final graded assessment 2.jpg -------------------------------------------------------------------------------- /Coding Interview Preparation/Final graded assessment 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Coding Interview Preparation/Final graded assessment 3.jpg -------------------------------------------------------------------------------- /Coding Interview Preparation/Final graded assessment 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Coding Interview Preparation/Final graded assessment 4.jpg -------------------------------------------------------------------------------- /Coding Interview Preparation/Introduction to algorithms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Coding Interview Preparation/Introduction to algorithms.jpg -------------------------------------------------------------------------------- /Coding Interview Preparation/Introduction to data structures.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Coding Interview Preparation/Introduction to data structures.jpg -------------------------------------------------------------------------------- /Coding Interview Preparation/Introduction to the coding interview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Coding Interview Preparation/Introduction to the coding interview.jpg -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/M3L4 - Connecting to a Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/M3L4 - Connecting to a Database.md -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/assets/createuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/assets/createuser.png -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/assets/databases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/assets/databases.png -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/assets/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/assets/directory.png -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/assets/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/assets/mysql.png -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/assets/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/assets/terminal.png -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/feedback: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/workplace/myproject/manage.py -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/workplace/myproject/myapp/admin.py -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/workplace/myproject/myapp/apps.py -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/workplace/myproject/myapp/models.py -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/workplace/myproject/myapp/tests.py -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/workplace/myproject/myapp/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/workplace/myproject/myproject/asgi.py -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/workplace/myproject/myproject/settings.py -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/workplace/myproject/myproject/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Connecting to a Database/workplace/myproject/myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Connecting to a Database/workplace/myproject/myproject/wsgi.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/M4L1 - Creating Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/M4L1 - Creating Templates.md -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/assets/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/assets/about.png -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/assets/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/assets/files.png -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/assets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/assets/menu.png -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/assets/templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/assets/templates.png -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/db.sqlite3 -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/manage.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myapp/admin.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myapp/apps.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myapp/models.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myapp/static/img/dessert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myapp/static/img/dessert.jpg -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myapp/tests.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myapp/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myapp/views.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myproject/asgi.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myproject/settings.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myproject/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/myproject/wsgi.py -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/templates/about.html -------------------------------------------------------------------------------- /Django Web Framework/Creating Templates/workplace/myproject/templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating Templates/workplace/myproject/templates/menu.html -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/M2L2 - Mapping URLs with Params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/M2L2 - Mapping URLs with Params.md -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/assets/lemonade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/assets/lemonade.png -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/assets/mocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/assets/mocha.png -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/assets/tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/assets/tea.png -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/manage.py -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/admin.py -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/apps.py -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/models.py -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/tests.py -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myapp/views.py -------------------------------------------------------------------------------- /Django Web Framework/Creating URLs and Mapping to Views/workplace/myproject/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Creating a view and URL configuration/assets/final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating a view and URL configuration/assets/final.png -------------------------------------------------------------------------------- /Django Web Framework/Creating a view and URL configuration/assets/new_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating a view and URL configuration/assets/new_terminal.png -------------------------------------------------------------------------------- /Django Web Framework/Creating a view and URL configuration/assets/urls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating a view and URL configuration/assets/urls.png -------------------------------------------------------------------------------- /Django Web Framework/Creating a view and URL configuration/assets/views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating a view and URL configuration/assets/views.png -------------------------------------------------------------------------------- /Django Web Framework/Creating a view and URL configuration/workplace/myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating a view and URL configuration/workplace/myproject/manage.py -------------------------------------------------------------------------------- /Django Web Framework/Creating a view and URL configuration/workplace/myproject/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Creating a view and URL configuration/workplace/myproject/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Creating a view and URL configuration/workplace/myproject/myapp/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Creating a view and URL configuration/workplace/myproject/myapp/url.py -------------------------------------------------------------------------------- /Django Web Framework/Creating a view and URL configuration/workplace/myproject/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Django Web Framework 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Django Web Framework 1.jpg -------------------------------------------------------------------------------- /Django Web Framework/Django Web Framework 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Django Web Framework 2.jpg -------------------------------------------------------------------------------- /Django Web Framework/Django Web Framework 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Django Web Framework 3.jpg -------------------------------------------------------------------------------- /Django Web Framework/Django Web Framework 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Django Web Framework 4.jpg -------------------------------------------------------------------------------- /Django Web Framework/Django Web Framework 5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Django Web Framework 5.jpg -------------------------------------------------------------------------------- /Django Web Framework/Django Web Framework 6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Django Web Framework 6.jpg -------------------------------------------------------------------------------- /Django Web Framework/Introduction to Django.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Introduction to Django.jpg -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/M2L2 - Mapping URLs with Params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/M2L2 - Mapping URLs with Params.md -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/assets/lemonade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/assets/lemonade.png -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/assets/mocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/assets/mocha.png -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/assets/tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/assets/tea.png -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/manage.py -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/admin.py -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/apps.py -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/models.py -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/tests.py -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/myapp/views.py -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/myproject/asgi.py -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/myproject/settings.py -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/myproject/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Mapping URLs with Params/workplace/myproject/myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Mapping URLs with Params/workplace/myproject/myproject/wsgi.py -------------------------------------------------------------------------------- /Django Web Framework/Menu items.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Menu items.docx -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/M3L1 - Models and migrations EXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/M3L1 - Models and migrations EXT.md -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/assets/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/assets/db.png -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/assets/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/assets/dir.png -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/assets/makemig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/assets/makemig.png -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/assets/mig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/assets/mig.png -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/db.sqlite3 -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/manage.py -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/myapp/admin.py -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/myapp/apps.py -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/myapp/models.py -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/myapp/tests.py -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/myapp/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/myproject/asgi.py -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/myproject/settings.py -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/myproject/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Models and migrations/workplace/myproject/myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models and migrations/workplace/myproject/myproject/wsgi.py -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/M3L1 - Models using Foreign Keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/M3L1 - Models using Foreign Keys.md -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/assets/1.png -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/assets/2.png -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/assets/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/assets/dir.png -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/assets/migrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/assets/migrations.png -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/assets/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/assets/terminal.png -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/db.sqlite3 -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/manage.py -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/admin.py -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/apps.py -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/models.py -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/tests.py -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/myproject/asgi.py -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/myproject/settings.py -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/myproject/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Models using Foreign Keys/workplace/myproject/myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models using Foreign Keys/workplace/myproject/myproject/wsgi.py -------------------------------------------------------------------------------- /Django Web Framework/Models.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Models.jpg -------------------------------------------------------------------------------- /Django Web Framework/Peer-graded Assignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Peer-graded Assignment.jpg -------------------------------------------------------------------------------- /Django Web Framework/Templates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Templates.jpg -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/M3L3 - Using Django Admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/M3L3 - Using Django Admin.md -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/assets/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/assets/directory.png -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/assets/djangoadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/assets/djangoadmin.png -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/assets/migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/assets/migration.png -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/assets/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/assets/password.png -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/assets/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/assets/permissions.png -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/assets/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/assets/terminal.png -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/assets/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/assets/username.png -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/db.sqlite3 -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/manage.py -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/myapp/admin.py -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/myapp/apps.py -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/myapp/models.py -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/myapp/tests.py -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/myapp/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/myproject/asgi.py -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/myproject/settings.py -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/myproject/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Using Django Admin/workplace/myproject/myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Using Django Admin/workplace/myproject/myproject/wsgi.py -------------------------------------------------------------------------------- /Django Web Framework/Views.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Views.jpg -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/M3L2 Working with Forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/M3L2 Working with Forms.md -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/assets/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/assets/db.png -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/assets/dbdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/assets/dbdir.png -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/assets/formview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/assets/formview.png -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/db.sqlite3 -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/manage.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myapp/admin.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myapp/apps.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myapp/forms.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myapp/models.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myapp/templates/booking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myapp/templates/booking.html -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myapp/tests.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myapp/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myapp/views.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myproject/asgi.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myproject/settings.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myproject/urls.py -------------------------------------------------------------------------------- /Django Web Framework/Working with Forms/workplace/myproject/myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/Working with Forms/workplace/myproject/myproject/wsgi.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon.zip -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/db.sqlite3 -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/asgi.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/settings.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/urls.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/littlelemon/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/littlelemon/wsgi.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/manage.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/admin.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/apps.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/forms.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/migrations/0001_initial.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/migrations/0002_menu_menu_item_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/migrations/0002_menu_menu_item_description.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/models.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/css/style.css -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/Grill B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/Grill B.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/Grill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/Grill.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/Grilled fish B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/Grilled fish B.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/Grilled fish C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/Grilled fish C.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/Mario and Adrian b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/Mario and Adrian b.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/favicon.ico -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/head_chef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/head_chef.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/lemon dessert B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/lemon dessert B.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/logo.png -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/logo_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/logo_footer.png -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/mario-and-adrian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/mario-and-adrian.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/menu_items/Bruschetta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/menu_items/Bruschetta.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/menu_items/Greek salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/menu_items/Greek salad.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/menu_items/Grilled fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/menu_items/Grilled fish.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/menu_items/Lemon dessert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/menu_items/Lemon dessert.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/pasta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/pasta.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/restaurant chef C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/restaurant chef C.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/restaurant food B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/restaurant food B.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/restaurant food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/restaurant food.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/restaurant inside alternative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/restaurant inside alternative.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/restaurant_inside.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/restaurant_inside.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/static/img/salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/static/img/salad.jpg -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/templates/about.html -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/templates/base.html -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/templates/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/templates/book.html -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/templates/index.html -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/templates/menu.html -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/templates/menu_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/templates/menu_item.html -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/templates/partials/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/templates/partials/_footer.html -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/templates/partials/_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/templates/partials/_header.html -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/tests.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/urls.py -------------------------------------------------------------------------------- /Django Web Framework/littlelemon/restaurant/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Django Web Framework/littlelemon/restaurant/views.py -------------------------------------------------------------------------------- /Introduction to Back-End Development/Course 1 Assessment 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/Course 1 Assessment 2.jpg -------------------------------------------------------------------------------- /Introduction to Back-End Development/Course 1 Assessment 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/Course 1 Assessment 3.jpg -------------------------------------------------------------------------------- /Introduction to Back-End Development/Course 1 Assessment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/Course 1 Assessment.jpg -------------------------------------------------------------------------------- /Introduction to Back-End Development/Create and style a webpage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/Create and style a webpage/README.md -------------------------------------------------------------------------------- /Introduction to Back-End Development/Create and style a webpage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/Create and style a webpage/index.html -------------------------------------------------------------------------------- /Introduction to Back-End Development/Create and style a webpage/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/Create and style a webpage/photo.jpg -------------------------------------------------------------------------------- /Introduction to Back-End Development/Create and style a webpage/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/Create and style a webpage/styles.css -------------------------------------------------------------------------------- /Introduction to Back-End Development/Get started with Web Development.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/Get started with Web Development.jpg -------------------------------------------------------------------------------- /Introduction to Back-End Development/Introduction to HTML and CSS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/Introduction to HTML and CSS.jpg -------------------------------------------------------------------------------- /Introduction to Back-End Development/UI Frameworks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/UI Frameworks.jpg -------------------------------------------------------------------------------- /Introduction to Back-End Development/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/index.html -------------------------------------------------------------------------------- /Introduction to Back-End Development/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Back-End Development/styles.css -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/(CRUD) Operations.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/(CRUD) Operations.jpg -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/Database design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/Database design.jpg -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/Graded Assessment 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/Graded Assessment 1.jpg -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/Graded Assessment 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/Graded Assessment 2.jpg -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/Graded Assessment 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/Graded Assessment 3.jpg -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/Introduction to Databases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/Introduction to Databases.jpg -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/SQLAnswersFinal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/SQLAnswersFinal.txt -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/project/LabInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/project/LabInstructions.md -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/project/README.md -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/project/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/project/images/button.png -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/project/images/createdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/project/images/createdb.png -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/project/images/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/project/images/mysql.png -------------------------------------------------------------------------------- /Introduction to Databases for Back-End Development/project/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Introduction to Databases for Back-End Development/project/images/terminal.png -------------------------------------------------------------------------------- /Programming in Python/Abstract Classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Abstract Classes/README.md -------------------------------------------------------------------------------- /Programming in Python/Abstract Classes/bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Abstract Classes/bank.py -------------------------------------------------------------------------------- /Programming in Python/Basic Programming with Python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Basic Programming with Python.jpg -------------------------------------------------------------------------------- /Programming in Python/End-of-Course Graded Assessment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/End-of-Course Graded Assessment.jpg -------------------------------------------------------------------------------- /Programming in Python/Functions, loops and data structures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Functions, loops and data structures/README.md -------------------------------------------------------------------------------- /Programming in Python/Functions, loops and data structures/ordering_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Functions, loops and data structures/ordering_system.py -------------------------------------------------------------------------------- /Programming in Python/Getting started with Python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Getting started with Python.jpg -------------------------------------------------------------------------------- /Programming in Python/Import and Scope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Import and Scope/README.md -------------------------------------------------------------------------------- /Programming in Python/Import and Scope/__pycache__/employee.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Import and Scope/__pycache__/employee.cpython-38.pyc -------------------------------------------------------------------------------- /Programming in Python/Import and Scope/employee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Import and Scope/employee.json -------------------------------------------------------------------------------- /Programming in Python/Import and Scope/employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Import and Scope/employee.py -------------------------------------------------------------------------------- /Programming in Python/Import and Scope/jsongenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Import and Scope/jsongenerator.py -------------------------------------------------------------------------------- /Programming in Python/Mapping key-values/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Mapping key-values/README.md -------------------------------------------------------------------------------- /Programming in Python/Mapping key-values/comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Mapping key-values/comprehensions.py -------------------------------------------------------------------------------- /Programming in Python/Modules packages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Modules packages.jpg -------------------------------------------------------------------------------- /Programming in Python/Programming Paradigms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Programming Paradigms.jpg -------------------------------------------------------------------------------- /Programming in Python/Quiz solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Quiz solutions.ipynb -------------------------------------------------------------------------------- /Programming in Python/Read in data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Read in data/README.md -------------------------------------------------------------------------------- /Programming in Python/Read in data/file_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Read in data/file_ops.py -------------------------------------------------------------------------------- /Programming in Python/Read in data/sampletext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Read in data/sampletext.txt -------------------------------------------------------------------------------- /Programming in Python/Type casting input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Type casting input/README.md -------------------------------------------------------------------------------- /Programming in Python/Type casting input/exercise1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Type casting input/exercise1.py -------------------------------------------------------------------------------- /Programming in Python/Type casting input/exercise2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Type casting input/exercise2.py -------------------------------------------------------------------------------- /Programming in Python/Write a test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Write a test/README.md -------------------------------------------------------------------------------- /Programming in Python/Write a test/__pycache__/spellcheck.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Write a test/__pycache__/spellcheck.cpython-38.pyc -------------------------------------------------------------------------------- /Programming in Python/Write a test/__pycache__/test_spellcheck.cpython-38-pytest-7.1.2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Write a test/__pycache__/test_spellcheck.cpython-38-pytest-7.1.2.pyc -------------------------------------------------------------------------------- /Programming in Python/Write a test/spellcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Write a test/spellcheck.py -------------------------------------------------------------------------------- /Programming in Python/Write a test/test_spellcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/Write a test/test_spellcheck.py -------------------------------------------------------------------------------- /Programming in Python/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Programming in Python/names.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/README.md -------------------------------------------------------------------------------- /The Full Stack/Connect-the-Little-Lemon-backend-to-MySQL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Connect-the-Little-Lemon-backend-to-MySQL.zip -------------------------------------------------------------------------------- /The Full Stack/Display-the-Little-Lemon-available-booking-times.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Display-the-Little-Lemon-available-booking-times.zip -------------------------------------------------------------------------------- /The Full Stack/Front-end technologies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Front-end technologies.jpg -------------------------------------------------------------------------------- /The Full Stack/Graded assessment 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Graded assessment 1.jpg -------------------------------------------------------------------------------- /The Full Stack/Graded assessment 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Graded assessment 2.jpg -------------------------------------------------------------------------------- /The Full Stack/Graded assessment 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Graded assessment 3.jpg -------------------------------------------------------------------------------- /The Full Stack/Introduction to the full stack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Introduction to the full stack.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon Booking System.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon Booking System.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system.zip -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/Pipfile -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/Pipfile.lock -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/db.sqlite3 -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/littlelemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/littlelemon/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/littlelemon/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/littlelemon/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/littlelemon/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/littlelemon/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/littlelemon/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/littlelemon/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/littlelemon/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/littlelemon/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/littlelemon/asgi.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/littlelemon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/littlelemon/settings.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/littlelemon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/littlelemon/urls.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/littlelemon/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/littlelemon/wsgi.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/manage.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/admin.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/apps.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/forms.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/migrations/0001_initial.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/models.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/css/style.css -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/Grill B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/Grill B.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/Grill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/Grill.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/Grilled fish B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/Grilled fish B.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/Grilled fish C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/Grilled fish C.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/Mario and Adrian b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/Mario and Adrian b.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/favicon.ico -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/head_chef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/head_chef.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/lemon dessert B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/lemon dessert B.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/logo.png -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/logo_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/logo_footer.png -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/mario-and-adrian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/mario-and-adrian.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/menu_items/Bruschetta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/menu_items/Bruschetta.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/menu_items/Greek salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/menu_items/Greek salad.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/pasta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/pasta.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/restaurant chef C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/restaurant chef C.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/restaurant food B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/restaurant food B.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/restaurant food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/restaurant food.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/restaurant_inside.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/restaurant_inside.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/static/img/salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/static/img/salad.jpg -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/templates/about.html -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/templates/base.html -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/templates/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/templates/book.html -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/templates/bookings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/templates/bookings.html -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/templates/index.html -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/templates/menu.html -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/templates/menu_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/templates/menu_item.html -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/templates/partials/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/templates/partials/_footer.html -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/templates/partials/_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/templates/partials/_header.html -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/tests.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/urls.py -------------------------------------------------------------------------------- /The Full Stack/Little Lemon booking system/restaurant/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Little Lemon booking system/restaurant/views.py -------------------------------------------------------------------------------- /The Full Stack/Production environments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Production environments.jpg -------------------------------------------------------------------------------- /The Full Stack/Set-up-the-Little-Lemon-booking-API.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/Set-up-the-Little-Lemon-booking-API.zip -------------------------------------------------------------------------------- /The Full Stack/The full stack using Django.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/The Full Stack/The full stack using Django.jpg -------------------------------------------------------------------------------- /Version Control/Command Line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Version Control/Command Line.jpg -------------------------------------------------------------------------------- /Version Control/End of course 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Version Control/End of course 2.jpg -------------------------------------------------------------------------------- /Version Control/End-of-course graded assessment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Version Control/End-of-course graded assessment.jpg -------------------------------------------------------------------------------- /Version Control/Software collaboration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Version Control/Software collaboration.jpg -------------------------------------------------------------------------------- /Version Control/Working with Git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennislamcv1/METABACKEND/HEAD/Version Control/Working with Git.jpg --------------------------------------------------------------------------------