├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── EShop.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Eshop ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── README.md ├── db.sqlite3 ├── manage.py ├── requirements.txt ├── store ├── __init__.py ├── admin.py ├── apps.py ├── middlewares │ ├── __init__.py │ └── auth.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200528_1402.py │ ├── 0003_product_category.py │ ├── 0004_auto_20200528_1430.py │ ├── 0005_auto_20200528_1732.py │ ├── 0006_customer.py │ ├── 0007_auto_20200529_2246.py │ ├── 0008_auto_20200531_2229.py │ ├── 0009_order.py │ ├── 0010_auto_20200531_2234.py │ ├── 0011_order_status.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── category.py │ ├── customer.py │ ├── orders.py │ └── product.py ├── templates │ ├── base.html │ ├── cart.html │ ├── index.html │ ├── login.html │ ├── orders.html │ ├── search.html │ └── signup.html ├── templatetags │ ├── cart.py │ └── custom_filter.py ├── tests.py ├── urls.py └── views │ ├── __init__.py │ ├── cart.py │ ├── checkout.py │ ├── home.py │ ├── login.py │ ├── orders.py │ ├── search.py │ └── signup.py └── uploads └── products ├── 10000069-2_28-fresho-capsicum-green.jpg ├── 10000119-2_3-fresho-ginger.jpg ├── 10000148_28-fresho-onion.jpg ├── 10000159-2_7-fresho-potato.jpg ├── 10000200-2_2-fresho-tomato-hybrid.jpg ├── 538228-0286_1-510x649.jpeg ├── 71aQIPEiPwL._UL1500_.jpg ├── 71aQIPEiPwL._UL1500__mhPaI81.jpg ├── 815qCLkD6RL._UL1500_.jpg ├── 81Aa5RlufHL._UL1500_.jpg ├── 81AuMZrtlXL._UL1500_.jpg ├── 81By76Ic5L._UL1500_.jpg ├── 81H0ki1TX2L._UL1500_.jpg ├── 81Uaa6osdJL._UL1500_.jpg ├── 81o5eQAdsGL._UL1500_.jpg ├── 81sBXoebupL._UL1500_.jpg ├── 81vdHasFRoL._UL1500_.jpg └── 91ZV6MDwl3L._UL1500_.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/EShop.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/.idea/EShop.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Eshop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Eshop/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/Eshop/asgi.py -------------------------------------------------------------------------------- /Eshop/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/Eshop/settings.py -------------------------------------------------------------------------------- /Eshop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/Eshop/urls.py -------------------------------------------------------------------------------- /Eshop/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/Eshop/wsgi.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/requirements.txt -------------------------------------------------------------------------------- /store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/admin.py -------------------------------------------------------------------------------- /store/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/apps.py -------------------------------------------------------------------------------- /store/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/middlewares/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/middlewares/auth.py -------------------------------------------------------------------------------- /store/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0001_initial.py -------------------------------------------------------------------------------- /store/migrations/0002_auto_20200528_1402.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0002_auto_20200528_1402.py -------------------------------------------------------------------------------- /store/migrations/0003_product_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0003_product_category.py -------------------------------------------------------------------------------- /store/migrations/0004_auto_20200528_1430.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0004_auto_20200528_1430.py -------------------------------------------------------------------------------- /store/migrations/0005_auto_20200528_1732.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0005_auto_20200528_1732.py -------------------------------------------------------------------------------- /store/migrations/0006_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0006_customer.py -------------------------------------------------------------------------------- /store/migrations/0007_auto_20200529_2246.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0007_auto_20200529_2246.py -------------------------------------------------------------------------------- /store/migrations/0008_auto_20200531_2229.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0008_auto_20200531_2229.py -------------------------------------------------------------------------------- /store/migrations/0009_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0009_order.py -------------------------------------------------------------------------------- /store/migrations/0010_auto_20200531_2234.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0010_auto_20200531_2234.py -------------------------------------------------------------------------------- /store/migrations/0011_order_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/migrations/0011_order_status.py -------------------------------------------------------------------------------- /store/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/models/__init__.py -------------------------------------------------------------------------------- /store/models/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/models/category.py -------------------------------------------------------------------------------- /store/models/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/models/customer.py -------------------------------------------------------------------------------- /store/models/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/models/orders.py -------------------------------------------------------------------------------- /store/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/models/product.py -------------------------------------------------------------------------------- /store/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/templates/base.html -------------------------------------------------------------------------------- /store/templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/templates/cart.html -------------------------------------------------------------------------------- /store/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/templates/index.html -------------------------------------------------------------------------------- /store/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/templates/login.html -------------------------------------------------------------------------------- /store/templates/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/templates/orders.html -------------------------------------------------------------------------------- /store/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/templates/search.html -------------------------------------------------------------------------------- /store/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/templates/signup.html -------------------------------------------------------------------------------- /store/templatetags/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/templatetags/cart.py -------------------------------------------------------------------------------- /store/templatetags/custom_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/templatetags/custom_filter.py -------------------------------------------------------------------------------- /store/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/tests.py -------------------------------------------------------------------------------- /store/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/urls.py -------------------------------------------------------------------------------- /store/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/views/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/views/cart.py -------------------------------------------------------------------------------- /store/views/checkout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/views/checkout.py -------------------------------------------------------------------------------- /store/views/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/views/home.py -------------------------------------------------------------------------------- /store/views/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/views/login.py -------------------------------------------------------------------------------- /store/views/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/views/orders.py -------------------------------------------------------------------------------- /store/views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/views/search.py -------------------------------------------------------------------------------- /store/views/signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/store/views/signup.py -------------------------------------------------------------------------------- /uploads/products/10000069-2_28-fresho-capsicum-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/10000069-2_28-fresho-capsicum-green.jpg -------------------------------------------------------------------------------- /uploads/products/10000119-2_3-fresho-ginger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/10000119-2_3-fresho-ginger.jpg -------------------------------------------------------------------------------- /uploads/products/10000148_28-fresho-onion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/10000148_28-fresho-onion.jpg -------------------------------------------------------------------------------- /uploads/products/10000159-2_7-fresho-potato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/10000159-2_7-fresho-potato.jpg -------------------------------------------------------------------------------- /uploads/products/10000200-2_2-fresho-tomato-hybrid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/10000200-2_2-fresho-tomato-hybrid.jpg -------------------------------------------------------------------------------- /uploads/products/538228-0286_1-510x649.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/538228-0286_1-510x649.jpeg -------------------------------------------------------------------------------- /uploads/products/71aQIPEiPwL._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/71aQIPEiPwL._UL1500_.jpg -------------------------------------------------------------------------------- /uploads/products/71aQIPEiPwL._UL1500__mhPaI81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/71aQIPEiPwL._UL1500__mhPaI81.jpg -------------------------------------------------------------------------------- /uploads/products/815qCLkD6RL._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/815qCLkD6RL._UL1500_.jpg -------------------------------------------------------------------------------- /uploads/products/81Aa5RlufHL._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/81Aa5RlufHL._UL1500_.jpg -------------------------------------------------------------------------------- /uploads/products/81AuMZrtlXL._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/81AuMZrtlXL._UL1500_.jpg -------------------------------------------------------------------------------- /uploads/products/81By76Ic5L._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/81By76Ic5L._UL1500_.jpg -------------------------------------------------------------------------------- /uploads/products/81H0ki1TX2L._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/81H0ki1TX2L._UL1500_.jpg -------------------------------------------------------------------------------- /uploads/products/81Uaa6osdJL._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/81Uaa6osdJL._UL1500_.jpg -------------------------------------------------------------------------------- /uploads/products/81o5eQAdsGL._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/81o5eQAdsGL._UL1500_.jpg -------------------------------------------------------------------------------- /uploads/products/81sBXoebupL._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/81sBXoebupL._UL1500_.jpg -------------------------------------------------------------------------------- /uploads/products/81vdHasFRoL._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/81vdHasFRoL._UL1500_.jpg -------------------------------------------------------------------------------- /uploads/products/91ZV6MDwl3L._UL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virendrapatel62/eshopdjango/HEAD/uploads/products/91ZV6MDwl3L._UL1500_.jpg --------------------------------------------------------------------------------