├── README.md └── ecommerceproject ├── cart ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── context_processors.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── context_processors.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-310.pyc │ │ └── __init__.cpython-310.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── ecommerceproject ├── __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 ├── media ├── category │ ├── -473Wx593H-461876161-peach-MODEL.webp │ ├── -473Wx593H-462323964-rosegold-MODEL.webp │ ├── -473Wx593H-462323964-rosegold-MODEL_f962p3K.webp │ ├── 6c26c_512.jpg │ ├── 6c26c_512_OXZLMqI.jpg │ ├── download_1.jpg │ ├── images.jpg │ └── images_MGYygpK.jpg └── product │ ├── -473Wx593H-441124576-khaki-MODEL5.jpg │ ├── -473Wx593H-462323964-rosegold-MODEL.webp │ ├── a.webp │ ├── c.jpg │ ├── download_1.jpg │ ├── e.webp │ ├── f.webp │ ├── h.webp │ ├── i.webp │ ├── k.jpg │ └── l.jpg ├── search_app ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-310.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── shop ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── context_processors.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── context_processors.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-310.pyc │ │ └── __init__.cpython-310.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── static ├── css │ ├── bootstrap.min.css │ └── custom.css ├── img │ ├── banner.png │ └── logo.png └── js │ ├── bootstrap.min.js │ └── popper.min.js └── templates ├── base.html ├── cart.html ├── category.html ├── footer.html ├── header.html ├── nav.html ├── product.html └── search.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/README.md -------------------------------------------------------------------------------- /ecommerceproject/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerceproject/cart/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/cart/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/cart/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/cart/__pycache__/context_processors.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/__pycache__/context_processors.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/cart/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/cart/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/cart/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/cart/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /ecommerceproject/cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/apps.py -------------------------------------------------------------------------------- /ecommerceproject/cart/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/context_processors.py -------------------------------------------------------------------------------- /ecommerceproject/cart/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/migrations/0001_initial.py -------------------------------------------------------------------------------- /ecommerceproject/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerceproject/cart/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/cart/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/models.py -------------------------------------------------------------------------------- /ecommerceproject/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/tests.py -------------------------------------------------------------------------------- /ecommerceproject/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/urls.py -------------------------------------------------------------------------------- /ecommerceproject/cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/cart/views.py -------------------------------------------------------------------------------- /ecommerceproject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/db.sqlite3 -------------------------------------------------------------------------------- /ecommerceproject/ecommerceproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerceproject/ecommerceproject/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/ecommerceproject/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/ecommerceproject/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/ecommerceproject/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/ecommerceproject/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/ecommerceproject/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/ecommerceproject/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/ecommerceproject/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/ecommerceproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/ecommerceproject/asgi.py -------------------------------------------------------------------------------- /ecommerceproject/ecommerceproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/ecommerceproject/settings.py -------------------------------------------------------------------------------- /ecommerceproject/ecommerceproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/ecommerceproject/urls.py -------------------------------------------------------------------------------- /ecommerceproject/ecommerceproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/ecommerceproject/wsgi.py -------------------------------------------------------------------------------- /ecommerceproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/manage.py -------------------------------------------------------------------------------- /ecommerceproject/media/category/-473Wx593H-461876161-peach-MODEL.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/category/-473Wx593H-461876161-peach-MODEL.webp -------------------------------------------------------------------------------- /ecommerceproject/media/category/-473Wx593H-462323964-rosegold-MODEL.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/category/-473Wx593H-462323964-rosegold-MODEL.webp -------------------------------------------------------------------------------- /ecommerceproject/media/category/-473Wx593H-462323964-rosegold-MODEL_f962p3K.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/category/-473Wx593H-462323964-rosegold-MODEL_f962p3K.webp -------------------------------------------------------------------------------- /ecommerceproject/media/category/6c26c_512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/category/6c26c_512.jpg -------------------------------------------------------------------------------- /ecommerceproject/media/category/6c26c_512_OXZLMqI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/category/6c26c_512_OXZLMqI.jpg -------------------------------------------------------------------------------- /ecommerceproject/media/category/download_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/category/download_1.jpg -------------------------------------------------------------------------------- /ecommerceproject/media/category/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/category/images.jpg -------------------------------------------------------------------------------- /ecommerceproject/media/category/images_MGYygpK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/category/images_MGYygpK.jpg -------------------------------------------------------------------------------- /ecommerceproject/media/product/-473Wx593H-441124576-khaki-MODEL5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/-473Wx593H-441124576-khaki-MODEL5.jpg -------------------------------------------------------------------------------- /ecommerceproject/media/product/-473Wx593H-462323964-rosegold-MODEL.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/-473Wx593H-462323964-rosegold-MODEL.webp -------------------------------------------------------------------------------- /ecommerceproject/media/product/a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/a.webp -------------------------------------------------------------------------------- /ecommerceproject/media/product/c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/c.jpg -------------------------------------------------------------------------------- /ecommerceproject/media/product/download_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/download_1.jpg -------------------------------------------------------------------------------- /ecommerceproject/media/product/e.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/e.webp -------------------------------------------------------------------------------- /ecommerceproject/media/product/f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/f.webp -------------------------------------------------------------------------------- /ecommerceproject/media/product/h.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/h.webp -------------------------------------------------------------------------------- /ecommerceproject/media/product/i.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/i.webp -------------------------------------------------------------------------------- /ecommerceproject/media/product/k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/k.jpg -------------------------------------------------------------------------------- /ecommerceproject/media/product/l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/media/product/l.jpg -------------------------------------------------------------------------------- /ecommerceproject/search_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerceproject/search_app/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/search_app/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/search_app/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/search_app/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/search_app/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/search_app/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/search_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /ecommerceproject/search_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/apps.py -------------------------------------------------------------------------------- /ecommerceproject/search_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerceproject/search_app/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/search_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/models.py -------------------------------------------------------------------------------- /ecommerceproject/search_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/tests.py -------------------------------------------------------------------------------- /ecommerceproject/search_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/urls.py -------------------------------------------------------------------------------- /ecommerceproject/search_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/search_app/views.py -------------------------------------------------------------------------------- /ecommerceproject/shop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerceproject/shop/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/shop/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/shop/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/shop/__pycache__/context_processors.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/__pycache__/context_processors.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/shop/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/shop/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/shop/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/shop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/admin.py -------------------------------------------------------------------------------- /ecommerceproject/shop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/apps.py -------------------------------------------------------------------------------- /ecommerceproject/shop/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/context_processors.py -------------------------------------------------------------------------------- /ecommerceproject/shop/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/migrations/0001_initial.py -------------------------------------------------------------------------------- /ecommerceproject/shop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerceproject/shop/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/shop/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerceproject/shop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/models.py -------------------------------------------------------------------------------- /ecommerceproject/shop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/tests.py -------------------------------------------------------------------------------- /ecommerceproject/shop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/urls.py -------------------------------------------------------------------------------- /ecommerceproject/shop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/shop/views.py -------------------------------------------------------------------------------- /ecommerceproject/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /ecommerceproject/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/static/css/custom.css -------------------------------------------------------------------------------- /ecommerceproject/static/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/static/img/banner.png -------------------------------------------------------------------------------- /ecommerceproject/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/static/img/logo.png -------------------------------------------------------------------------------- /ecommerceproject/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /ecommerceproject/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/static/js/popper.min.js -------------------------------------------------------------------------------- /ecommerceproject/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/templates/base.html -------------------------------------------------------------------------------- /ecommerceproject/templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/templates/cart.html -------------------------------------------------------------------------------- /ecommerceproject/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/templates/category.html -------------------------------------------------------------------------------- /ecommerceproject/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/templates/footer.html -------------------------------------------------------------------------------- /ecommerceproject/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/templates/header.html -------------------------------------------------------------------------------- /ecommerceproject/templates/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/templates/nav.html -------------------------------------------------------------------------------- /ecommerceproject/templates/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/templates/product.html -------------------------------------------------------------------------------- /ecommerceproject/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devis-varghese/Ecommerce-shopping-inamkes/HEAD/ecommerceproject/templates/search.html --------------------------------------------------------------------------------