├── README.md └── ecommerce_website_django ├── App_Login ├── __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-310.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-310.pyc │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── __init__.cpython-310.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── App_Order ├── __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 ├── templatetags │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── cart_tag.cpython-310.pyc │ │ └── cart_tag.cpython-38.pyc │ └── cart_tag.py ├── tests.py ├── urls.py └── views.py ├── App_Payment ├── __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-310.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 │ ├── 0002_alter_billingaddress_options.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-310.pyc │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── 0002_alter_billingaddress_options.cpython-310.pyc │ │ ├── 0002_alter_billingaddress_options.cpython-38.pyc │ │ ├── __init__.cpython-310.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── App_Shop ├── __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 ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── ecommerce_website_django ├── __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 ├── manage.py ├── media ├── Products │ ├── g1.webp │ ├── g1_bey6YS7.webp │ ├── g2.webp │ ├── g2_vqUO2iL.webp │ ├── g3.webp │ ├── g3_XAEXUL5.webp │ ├── m1.webp │ ├── m2.jpg │ ├── m2_VU8a1wA.jpg │ ├── m3.jpg │ ├── m3_4pPZcqY.jpg │ ├── r1.webp │ ├── r1_gc8wbAF.webp │ ├── r2.webp │ └── r2_t6TZJj7.webp └── m1.webp ├── static └── css │ └── main.css └── templates ├── App_Login ├── change_profile.html ├── login.html └── sign_up.html ├── App_Order └── cart.html ├── App_Payment ├── checkout.html ├── complete.html ├── order.html └── payment.html ├── App_Shop ├── home.html └── product_detail.html ├── base.html └── navbar.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/README.md -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/admin.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/apps.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/forms.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/migrations/0001_initial.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/models.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/tests.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/urls.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Login/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Login/views.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/admin.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/apps.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/migrations/0001_initial.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/models.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/templatetags/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/templatetags/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/templatetags/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/templatetags/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/templatetags/__pycache__/cart_tag.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/templatetags/__pycache__/cart_tag.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/templatetags/__pycache__/cart_tag.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/templatetags/__pycache__/cart_tag.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/templatetags/cart_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/templatetags/cart_tag.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/tests.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/urls.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Order/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Order/views.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/admin.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/apps.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/forms.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/migrations/0001_initial.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/migrations/0002_alter_billingaddress_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/migrations/0002_alter_billingaddress_options.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/migrations/__pycache__/0002_alter_billingaddress_options.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/migrations/__pycache__/0002_alter_billingaddress_options.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/migrations/__pycache__/0002_alter_billingaddress_options.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/migrations/__pycache__/0002_alter_billingaddress_options.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/models.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/tests.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/urls.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Payment/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Payment/views.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/admin.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/apps.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/migrations/0001_initial.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/models.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/tests.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/urls.py -------------------------------------------------------------------------------- /ecommerce_website_django/App_Shop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/App_Shop/views.py -------------------------------------------------------------------------------- /ecommerce_website_django/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/db.sqlite3 -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/asgi.py -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/settings.py -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/urls.py -------------------------------------------------------------------------------- /ecommerce_website_django/ecommerce_website_django/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/ecommerce_website_django/wsgi.py -------------------------------------------------------------------------------- /ecommerce_website_django/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/manage.py -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/g1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/g1.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/g1_bey6YS7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/g1_bey6YS7.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/g2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/g2.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/g2_vqUO2iL.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/g2_vqUO2iL.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/g3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/g3.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/g3_XAEXUL5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/g3_XAEXUL5.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/m1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/m1.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/m2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/m2.jpg -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/m2_VU8a1wA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/m2_VU8a1wA.jpg -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/m3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/m3.jpg -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/m3_4pPZcqY.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/m3_4pPZcqY.jpg -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/r1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/r1.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/r1_gc8wbAF.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/r1_gc8wbAF.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/r2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/r2.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/Products/r2_t6TZJj7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/Products/r2_t6TZJj7.webp -------------------------------------------------------------------------------- /ecommerce_website_django/media/m1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/media/m1.webp -------------------------------------------------------------------------------- /ecommerce_website_django/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/static/css/main.css -------------------------------------------------------------------------------- /ecommerce_website_django/templates/App_Login/change_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/App_Login/change_profile.html -------------------------------------------------------------------------------- /ecommerce_website_django/templates/App_Login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/App_Login/login.html -------------------------------------------------------------------------------- /ecommerce_website_django/templates/App_Login/sign_up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/App_Login/sign_up.html -------------------------------------------------------------------------------- /ecommerce_website_django/templates/App_Order/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/App_Order/cart.html -------------------------------------------------------------------------------- /ecommerce_website_django/templates/App_Payment/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/App_Payment/checkout.html -------------------------------------------------------------------------------- /ecommerce_website_django/templates/App_Payment/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/App_Payment/complete.html -------------------------------------------------------------------------------- /ecommerce_website_django/templates/App_Payment/order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/App_Payment/order.html -------------------------------------------------------------------------------- /ecommerce_website_django/templates/App_Payment/payment.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce_website_django/templates/App_Shop/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/App_Shop/home.html -------------------------------------------------------------------------------- /ecommerce_website_django/templates/App_Shop/product_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/App_Shop/product_detail.html -------------------------------------------------------------------------------- /ecommerce_website_django/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/base.html -------------------------------------------------------------------------------- /ecommerce_website_django/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faishal003/Ecommerce-website-with-Django/HEAD/ecommerce_website_django/templates/navbar.html --------------------------------------------------------------------------------