├── .gitignore ├── PayTm └── Checksum.py ├── README.md ├── blog ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190228_0015.py │ └── __init__.py ├── models.py ├── static │ └── blog │ │ └── mystatic.txt ├── templates │ └── blog │ │ ├── basic.html │ │ ├── blogpost.html │ │ └── index.html ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── mac ├── __init__.py ├── settings.py ├── templates │ └── index.html ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── media └── shop │ └── images │ ├── 0.png │ ├── 5.png │ ├── jeans.jpg │ ├── lancer_shoe.jpg │ ├── mi_phone.jpg │ ├── mixer_grinder.jpg │ ├── power_bank.jpg │ ├── t_shirt.jpg │ ├── test.png │ ├── test_5kXhEB5.png │ ├── test_zzbxSX6.png │ ├── video_11.jpg │ ├── watch.jpg │ ├── watch_DQtN2Qe.jpg │ ├── watch_OmoLbXd.jpg │ ├── watch_Qa5Gezo.jpg │ ├── watch_ZHogQcM.jpg │ ├── watch_olVrzRA.jpg │ └── watch_wfOl9L3.jpg └── shop ├── __init__.py ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20190210_0117.py ├── 0003_contact.py ├── 0004_orders.py ├── 0005_auto_20190220_1941.py ├── 0006_orders_phone.py ├── 0007_orderupdate.py ├── 0008_orders_amount.py ├── 0009_auto_20190330_1746.py └── __init__.py ├── models.py ├── static └── shop │ └── test.jpg ├── templates └── shop │ ├── about.html │ ├── basic.html │ ├── checkout.html │ ├── contact.html │ ├── index.html │ ├── paymentstatus.html │ ├── paytm.html │ ├── prodView.html │ ├── search.html │ └── tracker.html ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__/ 3 | .vscode/ -------------------------------------------------------------------------------- /PayTm/Checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/PayTm/Checksum.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MyAwesomeCart 2 | A Django E commerce website 3 | -------------------------------------------------------------------------------- /blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/admin.py -------------------------------------------------------------------------------- /blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/apps.py -------------------------------------------------------------------------------- /blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /blog/migrations/0002_auto_20190228_0015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/migrations/0002_auto_20190228_0015.py -------------------------------------------------------------------------------- /blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/models.py -------------------------------------------------------------------------------- /blog/static/blog/mystatic.txt: -------------------------------------------------------------------------------- 1 | this is my static file in blog -------------------------------------------------------------------------------- /blog/templates/blog/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/templates/blog/basic.html -------------------------------------------------------------------------------- /blog/templates/blog/blogpost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/templates/blog/blogpost.html -------------------------------------------------------------------------------- /blog/templates/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/templates/blog/index.html -------------------------------------------------------------------------------- /blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/tests.py -------------------------------------------------------------------------------- /blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/urls.py -------------------------------------------------------------------------------- /blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/blog/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /mac/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mac/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/mac/settings.py -------------------------------------------------------------------------------- /mac/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/mac/templates/index.html -------------------------------------------------------------------------------- /mac/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/mac/urls.py -------------------------------------------------------------------------------- /mac/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/mac/views.py -------------------------------------------------------------------------------- /mac/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/mac/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/manage.py -------------------------------------------------------------------------------- /media/shop/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/0.png -------------------------------------------------------------------------------- /media/shop/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/5.png -------------------------------------------------------------------------------- /media/shop/images/jeans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/jeans.jpg -------------------------------------------------------------------------------- /media/shop/images/lancer_shoe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/lancer_shoe.jpg -------------------------------------------------------------------------------- /media/shop/images/mi_phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/mi_phone.jpg -------------------------------------------------------------------------------- /media/shop/images/mixer_grinder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/mixer_grinder.jpg -------------------------------------------------------------------------------- /media/shop/images/power_bank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/power_bank.jpg -------------------------------------------------------------------------------- /media/shop/images/t_shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/t_shirt.jpg -------------------------------------------------------------------------------- /media/shop/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/test.png -------------------------------------------------------------------------------- /media/shop/images/test_5kXhEB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/test_5kXhEB5.png -------------------------------------------------------------------------------- /media/shop/images/test_zzbxSX6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/test_zzbxSX6.png -------------------------------------------------------------------------------- /media/shop/images/video_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/video_11.jpg -------------------------------------------------------------------------------- /media/shop/images/watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/watch.jpg -------------------------------------------------------------------------------- /media/shop/images/watch_DQtN2Qe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/watch_DQtN2Qe.jpg -------------------------------------------------------------------------------- /media/shop/images/watch_OmoLbXd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/watch_OmoLbXd.jpg -------------------------------------------------------------------------------- /media/shop/images/watch_Qa5Gezo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/watch_Qa5Gezo.jpg -------------------------------------------------------------------------------- /media/shop/images/watch_ZHogQcM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/watch_ZHogQcM.jpg -------------------------------------------------------------------------------- /media/shop/images/watch_olVrzRA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/watch_olVrzRA.jpg -------------------------------------------------------------------------------- /media/shop/images/watch_wfOl9L3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/media/shop/images/watch_wfOl9L3.jpg -------------------------------------------------------------------------------- /shop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/admin.py -------------------------------------------------------------------------------- /shop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/apps.py -------------------------------------------------------------------------------- /shop/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/migrations/0001_initial.py -------------------------------------------------------------------------------- /shop/migrations/0002_auto_20190210_0117.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/migrations/0002_auto_20190210_0117.py -------------------------------------------------------------------------------- /shop/migrations/0003_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/migrations/0003_contact.py -------------------------------------------------------------------------------- /shop/migrations/0004_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/migrations/0004_orders.py -------------------------------------------------------------------------------- /shop/migrations/0005_auto_20190220_1941.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/migrations/0005_auto_20190220_1941.py -------------------------------------------------------------------------------- /shop/migrations/0006_orders_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/migrations/0006_orders_phone.py -------------------------------------------------------------------------------- /shop/migrations/0007_orderupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/migrations/0007_orderupdate.py -------------------------------------------------------------------------------- /shop/migrations/0008_orders_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/migrations/0008_orders_amount.py -------------------------------------------------------------------------------- /shop/migrations/0009_auto_20190330_1746.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/migrations/0009_auto_20190330_1746.py -------------------------------------------------------------------------------- /shop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/models.py -------------------------------------------------------------------------------- /shop/static/shop/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/static/shop/test.jpg -------------------------------------------------------------------------------- /shop/templates/shop/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/templates/shop/about.html -------------------------------------------------------------------------------- /shop/templates/shop/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/templates/shop/basic.html -------------------------------------------------------------------------------- /shop/templates/shop/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/templates/shop/checkout.html -------------------------------------------------------------------------------- /shop/templates/shop/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/templates/shop/contact.html -------------------------------------------------------------------------------- /shop/templates/shop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/templates/shop/index.html -------------------------------------------------------------------------------- /shop/templates/shop/paymentstatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/templates/shop/paymentstatus.html -------------------------------------------------------------------------------- /shop/templates/shop/paytm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/templates/shop/paytm.html -------------------------------------------------------------------------------- /shop/templates/shop/prodView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/templates/shop/prodView.html -------------------------------------------------------------------------------- /shop/templates/shop/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/templates/shop/search.html -------------------------------------------------------------------------------- /shop/templates/shop/tracker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/templates/shop/tracker.html -------------------------------------------------------------------------------- /shop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/tests.py -------------------------------------------------------------------------------- /shop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/urls.py -------------------------------------------------------------------------------- /shop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/MyAwesomeCart/HEAD/shop/views.py --------------------------------------------------------------------------------