├── about.html
├── carts
└── cart.html
├── deps
├── css
│ ├── bootstrap
│ │ └── bootstrap.min.css
│ ├── my_css.css
│ └── my_footer_css.css
├── favicon
│ ├── android-chrome-192x192.png
│ ├── android-chrome-512x512.png
│ ├── apple-touch-icon.png
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── favicon.ico
│ └── site.webmanifest
├── icons
│ ├── basket2-fill.svg
│ ├── box-arrow-in-left.svg
│ ├── box-arrow-in-right.svg
│ ├── cart-plus.svg
│ ├── facebook.svg
│ ├── github.svg
│ ├── google.svg
│ ├── grid-fill.svg
│ └── trash3-fill.svg
├── images
│ ├── Not found image.png
│ ├── baseavatar.jpg
│ ├── bg-image.jpg
│ └── goods
│ │ ├── bedside table.jpg
│ │ ├── corner sofa.jpg
│ │ ├── double bed.jpg
│ │ ├── flower.jpg
│ │ ├── kitchen table 2.jpg
│ │ ├── kitchen table.jpg
│ │ ├── office chair.jpg
│ │ ├── plants.jpg
│ │ ├── set of tea table and three chairs.jpg
│ │ ├── set of tea table and two chairs.jpg
│ │ ├── sofa.jpg
│ │ └── strange table.jpg
└── js
│ ├── bootstrap
│ └── bootstrap.bundle.min.js
│ ├── jquery-ajax.js
│ ├── jquery-events.js
│ └── jquery
│ └── jquery-3.7.0.min.js
├── goods
├── catalog.html
└── product.html
├── index.html
├── orders
└── create_order.html
├── other_files
├── 404.html
├── 500.html
├── goods_list.py
├── notifications.html
├── sale_banner.html
└── settings.json
└── users
├── login.html
├── profile.html
└── registration.html
/about.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/about.html
--------------------------------------------------------------------------------
/carts/cart.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/carts/cart.html
--------------------------------------------------------------------------------
/deps/css/bootstrap/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/css/bootstrap/bootstrap.min.css
--------------------------------------------------------------------------------
/deps/css/my_css.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/css/my_css.css
--------------------------------------------------------------------------------
/deps/css/my_footer_css.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/css/my_footer_css.css
--------------------------------------------------------------------------------
/deps/favicon/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/favicon/android-chrome-192x192.png
--------------------------------------------------------------------------------
/deps/favicon/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/favicon/android-chrome-512x512.png
--------------------------------------------------------------------------------
/deps/favicon/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/favicon/apple-touch-icon.png
--------------------------------------------------------------------------------
/deps/favicon/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/favicon/favicon-16x16.png
--------------------------------------------------------------------------------
/deps/favicon/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/favicon/favicon-32x32.png
--------------------------------------------------------------------------------
/deps/favicon/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/favicon/favicon.ico
--------------------------------------------------------------------------------
/deps/favicon/site.webmanifest:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/favicon/site.webmanifest
--------------------------------------------------------------------------------
/deps/icons/basket2-fill.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/icons/basket2-fill.svg
--------------------------------------------------------------------------------
/deps/icons/box-arrow-in-left.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/icons/box-arrow-in-left.svg
--------------------------------------------------------------------------------
/deps/icons/box-arrow-in-right.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/icons/box-arrow-in-right.svg
--------------------------------------------------------------------------------
/deps/icons/cart-plus.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/icons/cart-plus.svg
--------------------------------------------------------------------------------
/deps/icons/facebook.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/icons/facebook.svg
--------------------------------------------------------------------------------
/deps/icons/github.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/icons/github.svg
--------------------------------------------------------------------------------
/deps/icons/google.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/icons/google.svg
--------------------------------------------------------------------------------
/deps/icons/grid-fill.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/icons/grid-fill.svg
--------------------------------------------------------------------------------
/deps/icons/trash3-fill.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/icons/trash3-fill.svg
--------------------------------------------------------------------------------
/deps/images/Not found image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/Not found image.png
--------------------------------------------------------------------------------
/deps/images/baseavatar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/baseavatar.jpg
--------------------------------------------------------------------------------
/deps/images/bg-image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/bg-image.jpg
--------------------------------------------------------------------------------
/deps/images/goods/bedside table.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/bedside table.jpg
--------------------------------------------------------------------------------
/deps/images/goods/corner sofa.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/corner sofa.jpg
--------------------------------------------------------------------------------
/deps/images/goods/double bed.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/double bed.jpg
--------------------------------------------------------------------------------
/deps/images/goods/flower.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/flower.jpg
--------------------------------------------------------------------------------
/deps/images/goods/kitchen table 2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/kitchen table 2.jpg
--------------------------------------------------------------------------------
/deps/images/goods/kitchen table.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/kitchen table.jpg
--------------------------------------------------------------------------------
/deps/images/goods/office chair.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/office chair.jpg
--------------------------------------------------------------------------------
/deps/images/goods/plants.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/plants.jpg
--------------------------------------------------------------------------------
/deps/images/goods/set of tea table and three chairs.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/set of tea table and three chairs.jpg
--------------------------------------------------------------------------------
/deps/images/goods/set of tea table and two chairs.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/set of tea table and two chairs.jpg
--------------------------------------------------------------------------------
/deps/images/goods/sofa.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/sofa.jpg
--------------------------------------------------------------------------------
/deps/images/goods/strange table.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/images/goods/strange table.jpg
--------------------------------------------------------------------------------
/deps/js/bootstrap/bootstrap.bundle.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/js/bootstrap/bootstrap.bundle.min.js
--------------------------------------------------------------------------------
/deps/js/jquery-ajax.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/js/jquery-ajax.js
--------------------------------------------------------------------------------
/deps/js/jquery-events.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/js/jquery-events.js
--------------------------------------------------------------------------------
/deps/js/jquery/jquery-3.7.0.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/deps/js/jquery/jquery-3.7.0.min.js
--------------------------------------------------------------------------------
/goods/catalog.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/goods/catalog.html
--------------------------------------------------------------------------------
/goods/product.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/goods/product.html
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/index.html
--------------------------------------------------------------------------------
/orders/create_order.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/orders/create_order.html
--------------------------------------------------------------------------------
/other_files/404.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/other_files/404.html
--------------------------------------------------------------------------------
/other_files/500.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/other_files/500.html
--------------------------------------------------------------------------------
/other_files/goods_list.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/other_files/goods_list.py
--------------------------------------------------------------------------------
/other_files/notifications.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/other_files/notifications.html
--------------------------------------------------------------------------------
/other_files/sale_banner.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/other_files/sale_banner.html
--------------------------------------------------------------------------------
/other_files/settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/other_files/settings.json
--------------------------------------------------------------------------------
/users/login.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/users/login.html
--------------------------------------------------------------------------------
/users/profile.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/users/profile.html
--------------------------------------------------------------------------------
/users/registration.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PythonHubStudio/templates-for-Django-4-course-Home/HEAD/users/registration.html
--------------------------------------------------------------------------------