├── .gitignore ├── accounts ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_account_is_email.py │ ├── 0003_alter_account_is_email.py │ ├── 0004_alter_userprofile_profile_picture.py │ └── __init__.py ├── models.py ├── templates │ └── accounts │ │ ├── account_verification_email.html │ │ ├── dashboard │ │ ├── change_password.html │ │ ├── dashboard.html │ │ ├── dashboard_sidebar.html │ │ ├── edit_profile.html │ │ ├── my_orders.html │ │ └── order_details.html │ │ ├── forgotpassword.html │ │ ├── login.html │ │ ├── register.html │ │ ├── reset_password_email.html │ │ ├── resetpassword.html │ │ └── user_login.html ├── tests.py ├── urls.py └── views.py ├── adminpannel ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── adminpannel │ │ ├── AcceptedOrders.html │ │ ├── AddCoupon.html │ │ ├── Cancelled_order.html │ │ ├── Category.html │ │ ├── ProductConfirm.html │ │ ├── ViewCategory.html │ │ ├── ViewCoupons.html │ │ ├── ViewMainCategory.html │ │ ├── addproduct.html │ │ ├── admin_home.html │ │ ├── admin_login.html │ │ ├── adminbase.html │ │ ├── base.html │ │ ├── confirmation.html │ │ ├── editproduct.html │ │ ├── loginbase.html │ │ ├── mainCategory.html │ │ ├── orderlist.html │ │ ├── pendingProduct.html │ │ ├── soldproduct_list.html │ │ ├── test.html │ │ ├── userdetails.html │ │ ├── vendor_details.html │ │ ├── vendorrequest.html │ │ ├── viewproduct.html │ │ └── viewunlistedproduct.html ├── tests.py ├── urls.py └── views.py ├── cartapp ├── __init__.py ├── admin.py ├── apps.py ├── context_processors.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── cart │ │ ├── CouponPage.html │ │ ├── cart.html │ │ └── checkout.html ├── tests.py ├── urls.py └── views.py ├── category ├── __init__.py ├── admin.py ├── apps.py ├── context_processors.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_main_category_count_sold.py │ ├── 0003_alter_main_category_count_sold.py │ ├── 0004_alter_main_category_count_sold.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── coupon ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_couponuser.py │ ├── 0003_rename_couponuser_couponusers.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── edifice ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── media ├── banner_imgs │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp │ └── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1uo6iNW.webp ├── product │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1xYUkla.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_5SZoIPW.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_5SbvWJ4.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_7mLHgdd.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_B2uSY8T.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_CO2BYvX.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_DbOZBCp.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_DkjkHDj.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_M2n4h9e.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Q4RpuZf.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_QJdKWoN.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_ReG5Idj.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Smkza3C.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_W5kVTod.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_WXwitAg.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Y4FKToo.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_YPOOTOj.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Z1Xp0uq.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_c17olMO.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_fiW4X5C.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_kZO3XSs.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_m4olOu9.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_mPRit7H.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_mTLRPe4.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_osD397r.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_q79C53b.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_qGT9hkC.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_tB1Beq2.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_tWQ7r7K.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_uTCfcOC.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_vLqoyWD.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_wUxNWch.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_zN9cOUL.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_zrB42Mh.webp │ ├── 61CqLgubwoL._SX679_.jpg │ ├── 61CqLgubwoL._SX679__3IfGsRF.jpg │ ├── 61CqLgubwoL._SX679__ApJH3HN.jpg │ ├── 61CqLgubwoL._SX679__Hg8uNmx.jpg │ ├── 61CqLgubwoL._SX679__JXGk2XH.jpg │ ├── 61CqLgubwoL._SX679__O0BSqd9.jpg │ ├── 61CqLgubwoL._SX679__TxE8U8O.jpg │ ├── 61CqLgubwoL._SX679__Xf9knWm.jpg │ ├── 61CqLgubwoL._SX679__YzWgGQG.jpg │ ├── 61CqLgubwoL._SX679__eCAc4df.jpg │ ├── 61CqLgubwoL._SX679__g4KpOyb.jpg │ ├── 61CqLgubwoL._SX679__sQBEXaq.jpg │ ├── 61CqLgubwoL._SX679__zQJsZyR.jpg │ ├── 61wxafhh8ul._sl1500_.jpg │ ├── 653675.jpg │ ├── 653675_96vu7CE.jpg │ ├── 653675_9GLKMpE.jpg │ ├── 653675_A3esKpn.jpg │ ├── 653675_EWChJMC.jpg │ ├── 653675_Qn0rvtC.jpg │ ├── 653675_R2WOfoh.jpg │ ├── 653675_SM91Lvx.jpg │ ├── 653675_coud5va.jpg │ ├── 653675_gNS4IwW.jpg │ ├── 653675_hJp8EJK.jpg │ ├── 653675_khiwhzZ.jpg │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_7W6ajPe.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_FjzFH7z.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_PrvjB8t.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_UaMv598.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_hLBnHYf.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_iQGNrSX.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_tis1Kzj.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_xe0KVVv.png │ ├── acerlogo.png │ ├── acerlogo_6nkb7mR.png │ ├── acerlogo_GoBJipp.png │ ├── acerlogo_We3E493.png │ ├── acerlogo_qDg2USm.png │ ├── acerlogo_vYA41gF.png │ ├── core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270.webp │ ├── core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_7eR3BA8.webp │ ├── d-slide-1.png │ ├── d-slide-1_JDaQhh2.png │ ├── d-slide-3.png │ ├── d-slide-3_2UG6UHn.png │ ├── d-slide-3_JNnF2Jd.png │ ├── d-slide-3_hfZPxzG.png │ ├── d-slide-3_pPD08Qo.png │ ├── lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf4ryrazd7.webp │ ├── lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf4ryrazd7_dcSqQxF.webp │ ├── lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf7zcg5tfb_1.webp │ ├── processor.jpg │ ├── slider-1.png │ ├── slider-2.png │ └── slider-3.png ├── products │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1JMz6wy.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1lsSWqM.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_BANvFUu.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_V4VhxfH.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Z47Cq0q.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_eg2MQCA.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_kKq7DV3.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_mYRp4g8.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_uKh9dhA.webp │ ├── 61CqLgubwoL._SX679_.jpg │ ├── 61CqLgubwoL._SX679__QsVGuWd.jpg │ ├── 61CqLgubwoL._SX679__l6Joyhm.jpg │ ├── 61wxafhh8ul._sl1500_.jpg │ ├── 653675.jpg │ ├── 653675_OVTkWui.jpg │ ├── 653675_z4eiTFa.jpg │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_0KPBYeJ.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_LLrt0jI.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_MObFCJj.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_NpYUPJb.png │ ├── 68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_i2V6nZm.png │ ├── 71BzjAgpk-L._SX522_.jpg │ ├── 71BzjAgpk-L._SX522__RKri14O.jpg │ ├── 91ddmP-VCL._SX522_.jpg │ ├── ASUS_ROG_Strix_NVIDIA_GeForce_RTX_3090.jpg │ ├── ASUS_ROG_Strix_NVIDIA_GeForce_RTX_3090_0vzlGjM.jpg │ ├── F_20220227195351X1J3tx.jpg │ ├── HP_X1000_Wired_USB_Mouse_with_3_Handy_Buttons.jpg │ ├── Lenovo_D22e-20_1.jpg │ ├── Lenovo_D22e-20_1_Bwsfg1M.jpg │ ├── Lenovo_L22i-30_A21215FL0_54.6cms_21.5_Monitor_-_HDMI.webp │ ├── Lenovo_L22i-30_A21215FL0_54.6cms_21.5_Monitor_-_HDMI_kfVky3p.webp │ ├── Logitech_G402.jpg │ ├── MSI_GeForce_RTX_3090_Gaming_X_Trio_24G.jpg │ ├── MSI_GeForce_RTX_3090_Gaming_X_Trio_24G_ROIiOfC.jpg │ ├── acerlogo.png │ ├── acerlogo_I0vT3VL.png │ ├── acerlogo_OxnGU4z.png │ ├── core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270.webp │ ├── core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_MDzJA5q.webp │ ├── core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_hl2FsKH.webp │ ├── d-slide-1.png │ ├── d-slide-1_iM5C25F.png │ ├── d-slide-3.png │ ├── d-slide-3_eeCdikD.png │ ├── d-slide-3_t8sODkD.png │ ├── d-slide-3_zR4hIyM.png │ ├── lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf7zcg5tfb_1.webp │ ├── lenovologo.png │ ├── monitor.jpg │ ├── pngwing.com_4.png │ ├── pngwing.com_4_3JDu64P.png │ ├── pngwing.com_4_75u4u1G.png │ ├── pngwing.com_4_HNPWsjw.png │ ├── pngwing.com_4_HpuM5dB.png │ ├── pngwing.com_4_LHz1BNa.png │ ├── pngwing.com_4_LMrC1bD.png │ ├── pngwing.com_4_Ru3h9Mo.png │ ├── pngwing.com_4_W1GVuE2.png │ ├── pngwing.com_4_Ww9pQ9d.png │ ├── pngwing.com_4_la6wjsq.png │ ├── pngwing.com_4_q4CctiS.png │ ├── pngwing.com_4_zB7CVBR.png │ └── slider-3.png ├── slider_imgs │ ├── slider-1.png │ ├── slider-2.png │ └── slider-3.png └── userprofile │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp │ ├── d9569bbed4393e2ceb1af7ba64fdf86a.jpg │ ├── download.jpg │ ├── download_MQjmTUK.jpg │ └── male-silhouette-avatar-profile-picture-260nw-199246382.webp ├── order ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_orderproduct_order_sum.py │ └── __init__.py ├── models.py ├── templates │ └── orders │ │ ├── order_completed.html │ │ ├── order_recieved_email.html │ │ └── payments.html ├── tests.py ├── urls.py └── views.py ├── photos └── categories │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_C8vEkE9.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_NxR2CoY.webp │ ├── 5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_tmOoQ0O.webp │ ├── core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270.webp │ ├── core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_1aRq8F7.webp │ ├── core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_8LFTIpP.webp │ ├── core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_9AYNh8T.webp │ ├── core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_Cfrgb8k.webp │ ├── d-slide-1.png │ ├── pngwing.com.png │ ├── pngwing.com_3.png │ ├── pngwing.com_4.png │ ├── power-GPU.jpg │ ├── power-GPU_2DFyRLJ.jpg │ ├── predator_monitor.webp │ └── processor.jpg ├── requirements.txt ├── static ├── assets │ ├── css │ │ └── demo.css │ ├── img │ │ ├── avatars │ │ │ └── 1.png │ │ ├── favicon │ │ │ └── favicon.ico │ │ ├── icons │ │ │ ├── brands │ │ │ │ ├── asana.png │ │ │ │ ├── behance.png │ │ │ │ ├── dribbble.png │ │ │ │ ├── facebook.png │ │ │ │ ├── github.png │ │ │ │ ├── google.png │ │ │ │ ├── instagram.png │ │ │ │ ├── mailchimp.png │ │ │ │ ├── slack.png │ │ │ │ └── twitter.png │ │ │ └── unicons │ │ │ │ ├── cc-primary.png │ │ │ │ ├── cc-success.png │ │ │ │ ├── cc-warning.png │ │ │ │ ├── chart-success.png │ │ │ │ ├── chart.png │ │ │ │ ├── paypal.png │ │ │ │ ├── wallet-info.png │ │ │ │ └── wallet.png │ │ └── illustrations │ │ │ ├── man-with-laptop-light.png │ │ │ └── page-misc-error-light.png │ ├── js │ │ ├── config.js │ │ ├── dashboards-analytics.js │ │ ├── extended-ui-perfect-scrollbar.js │ │ ├── form-basic-inputs.js │ │ ├── main.js │ │ ├── pages-account-settings-account.js │ │ ├── ui-modals.js │ │ ├── ui-popover.js │ │ └── ui-toasts.js │ └── vendor │ │ ├── css │ │ ├── core.css │ │ ├── pages │ │ │ ├── page-account-settings.css │ │ │ ├── page-auth.css │ │ │ ├── page-icons.css │ │ │ └── page-misc.css │ │ └── theme-default.css │ │ ├── fonts │ │ ├── boxicons.css │ │ └── boxicons │ │ │ ├── boxicons.eot │ │ │ ├── boxicons.svg │ │ │ ├── boxicons.ttf │ │ │ ├── boxicons.woff │ │ │ └── boxicons.woff2 │ │ ├── js │ │ ├── bootstrap.js │ │ ├── helpers.js │ │ └── menu.js │ │ └── libs │ │ ├── apex-charts │ │ ├── apex-charts.css │ │ └── apexcharts.js │ │ ├── highlight │ │ ├── highlight-github.css │ │ ├── highlight.css │ │ └── highlight.js │ │ ├── jquery │ │ └── jquery.js │ │ ├── masonry │ │ └── masonry.js │ │ ├── perfect-scrollbar │ │ ├── perfect-scrollbar.css │ │ └── perfect-scrollbar.js │ │ └── popper │ │ └── popper.js ├── css │ ├── animate.css │ ├── backtotop.css │ ├── bootstrap.css │ ├── custom.css │ ├── default.css │ ├── font-awesome-pro.css │ ├── images │ │ ├── ui-icons_444444_256x240.html │ │ ├── ui-icons_555555_256x240.html │ │ ├── ui-icons_777620_256x240.html │ │ ├── ui-icons_777777_256x240.html │ │ ├── ui-icons_cc0000_256x240.html │ │ └── ui-icons_ffffff_256x240.html │ ├── magnific-popup.css │ ├── meanmenu.css │ ├── nice-select.css │ ├── owl-carousel.css │ ├── owl.video.play.html │ ├── preloader.css │ ├── style.css │ ├── swiper-bundle.css │ └── ui-range-slider.css ├── flaticon │ ├── flaticon.css │ ├── flaticon10fb.eot │ ├── flaticon10fb.svg │ ├── flaticon10fb.ttf │ ├── flaticon10fb.woff │ └── flaticon10fb.woff2 ├── fonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.html │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-brands-400d41d.eot │ ├── fa-duotone-900.eot │ ├── fa-duotone-900.html │ ├── fa-duotone-900.ttf │ ├── fa-duotone-900.woff │ ├── fa-duotone-900.woff2 │ ├── fa-duotone-900d41d.eot │ ├── fa-light-300.eot │ ├── fa-light-300.html │ ├── fa-light-300.ttf │ ├── fa-light-300.woff │ ├── fa-light-300.woff2 │ ├── fa-light-300d41d.eot │ ├── fa-regular-400.eot │ ├── fa-regular-400.html │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-regular-400d41d.eot │ ├── fa-solid-900.eot │ ├── fa-solid-900.html │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ ├── fa-solid-900.woff2 │ └── fa-solid-900d41d.eot ├── img │ ├── about │ │ ├── ab-01.jpg │ │ ├── ab-02.jpg │ │ ├── about-b.png │ │ └── c-icon-01.png │ ├── author │ │ └── author-sm-1.jpg │ ├── banner │ │ └── page-banner-4.jpg │ ├── blog │ │ ├── blog-thumb.jpg │ │ ├── incen.jpg │ │ ├── news-author.jpg │ │ ├── p-author-1.jpg │ │ ├── p-author-2.jpg │ │ ├── p-author-3.jpg │ │ ├── sm-b-1.jpg │ │ ├── sm-b-2.jpg │ │ ├── sm-b-3.jpg │ │ ├── sm-b-4.jpg │ │ ├── sm-b-5.jpg │ │ ├── sm-b-6.jpg │ │ ├── sm-b2-1.jpg │ │ ├── sm-b2-2.jpg │ │ ├── sm-b2-3.jpg │ │ ├── sm-b2-4.jpg │ │ ├── sm-b2-5.jpg │ │ ├── sm-b2-6.jpg │ │ └── sponsor-3.jpg │ ├── brand │ │ ├── app_android.png │ │ ├── app_ios.png │ │ ├── brand-1.jpg │ │ ├── brand-2.jpg │ │ ├── brand-3.jpg │ │ ├── brand-4.jpg │ │ ├── brand-5.jpg │ │ └── brand-6.jpg │ ├── cart │ │ ├── 20.jpg │ │ ├── shop-p-10.jpg │ │ └── shop-p-11.jpg │ ├── categorie │ │ ├── cat-1.jpg │ │ ├── cat-2.jpg │ │ ├── cat-3.jpg │ │ ├── cat-4.jpg │ │ ├── cat-5.jpg │ │ └── cat-6.jpg │ ├── favicon.png │ ├── features-product │ │ ├── fp-1.jpg │ │ ├── fp-10.jpg │ │ ├── fp-11.jpg │ │ ├── fp-12.jpg │ │ ├── fp-2.jpg │ │ ├── fp-3.jpg │ │ ├── fp-4.jpg │ │ ├── fp-6.jpg │ │ ├── fp-7.jpg │ │ ├── fp-8.jpg │ │ ├── fp-9.jpg │ │ ├── fpb-1.jpg │ │ ├── fpb-2.jpg │ │ ├── fpsm-1.jpg │ │ ├── fpsm-2.jpg │ │ ├── product-content-1.jpg │ │ ├── product-content-2.jpg │ │ ├── product-content-3.jpg │ │ ├── product-content-4.jpg │ │ ├── product-content-5.png │ │ └── product-content-6.png │ ├── gallery │ │ ├── gal-1.jpg │ │ ├── gal-2.jpg │ │ ├── gal-3.jpg │ │ ├── gal-4.jpg │ │ ├── gal-5.jpg │ │ └── gal-6.jpg │ ├── location │ │ ├── location-1.jpg │ │ ├── location-2.jpg │ │ ├── location-3.jpg │ │ └── location-4.jpg │ ├── logo │ │ ├── edifce.jpeg │ │ ├── edifice2.png │ │ ├── logo1.svg │ │ └── product-not-found.png │ ├── payment │ │ └── payment.png │ ├── product │ │ ├── nav │ │ │ ├── product-nav-1.jpg │ │ │ ├── product-nav-2.jpg │ │ │ ├── product-nav-3.jpg │ │ │ ├── product-nav-big-1.jpg │ │ │ ├── product-nav-big-2.jpg │ │ │ └── product-nav-big-3.jpg │ │ ├── sm-1.jpg │ │ ├── sm-2.jpg │ │ ├── sm-3.jpg │ │ ├── sm-4.jpg │ │ ├── sm-5.jpg │ │ ├── sm-6.jpg │ │ ├── sm-7.jpg │ │ ├── sm-8.jpg │ │ ├── tp-1.jpg │ │ ├── tp-10.jpg │ │ ├── tp-12.jpg │ │ ├── tp-13.jpg │ │ ├── tp-14.jpg │ │ ├── tp-15.jpg │ │ ├── tp-16.jpg │ │ ├── tp-17.jpg │ │ ├── tp-18.jpg │ │ ├── tp-2.jpg │ │ ├── tp-20.jpg │ │ ├── tp-22.jpg │ │ ├── tp-23.jpg │ │ ├── tp-24.jpg │ │ ├── tp-26.jpg │ │ ├── tp-3.jpg │ │ ├── tp-4.jpg │ │ ├── tp-5.jpg │ │ ├── tp-6.jpg │ │ ├── tp-7.jpg │ │ └── tp-9.jpg │ ├── quick-view │ │ ├── quick-nav-1.jpg │ │ ├── quick-nav-2.jpg │ │ ├── quick-nav-3.jpg │ │ ├── quick-nav-4.jpg │ │ ├── quick-view-1.jpg │ │ ├── quick-view-2.jpg │ │ ├── quick-view-3.jpg │ │ └── quick-view-4.jpg │ ├── slider │ │ ├── 01-slide-1.jpg │ │ ├── 01-slide-2.jpg │ │ ├── 01-slide-3.jpg │ │ ├── 02-slide-1.jpg │ │ ├── 02-slide-2.jpg │ │ ├── 02-slide-3.jpg │ │ ├── 03-slide-1.jpg │ │ ├── 03-slide-2.jpg │ │ └── 03-slide-3.jpg │ └── team │ │ ├── person-3.jpg │ │ ├── person-4.jpg │ │ └── person-5.jpg └── js │ ├── ajax-form.js │ ├── backtotop.js │ ├── bootstrap-bundle.js │ ├── countdown.min.js │ ├── counterup.js │ ├── imagesloaded-pkgd.js │ ├── isotope-pkgd.js │ ├── magnific-popup.js │ ├── main.js │ ├── meanmenu.js │ ├── nice-select.js │ ├── owl-carousel.js │ ├── parallax.js │ ├── swiper-bundle.js │ ├── tweenmax.js │ ├── ui-slider-range.js │ ├── vendor │ ├── jquery.js │ └── waypoints.js │ └── wow.js ├── store ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_product_mrp.py │ ├── 0003_alter_product_mrp.py │ ├── 0004_alter_product_mrp.py │ ├── 0005_product_count_sold.py │ ├── 0006_alter_product_count_sold.py │ ├── 0007_remove_product_count_sold.py │ ├── 0008_product_count_sold.py │ └── __init__.py ├── models.py ├── templates │ └── store │ │ ├── product_details.html │ │ └── store.html ├── tests.py ├── urls.py └── views.py ├── templates ├── 404.html ├── base.html ├── includes │ ├── alert.html │ ├── footer.html │ └── header.html ├── index.html └── main │ └── home.html ├── user ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── vendor ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── vendor │ │ ├── Cancelled_order.html │ │ ├── add_product_adminmail.html │ │ ├── addproduct.html │ │ ├── base.html │ │ ├── confirmation.html │ │ ├── forgotpassword.html │ │ ├── loginbase.html │ │ ├── orderlist.html │ │ ├── registerbase.html │ │ ├── reset_password_email.html │ │ ├── resetpassword.html │ │ ├── soldproduct_list.html │ │ ├── unlisted.html │ │ ├── vendor_activation.html │ │ ├── vendor_reset_password_email.html │ │ ├── vendorhome.html │ │ ├── vendorlogin.html │ │ ├── vendorregister.html │ │ └── viewproduct.html ├── tests.py ├── urls.py └── views.py └── wishlists ├── __init__.py ├── admin.py ├── apps.py ├── context_processors.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── templates └── wishlist │ └── wishlist.html ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounts/migrations/0002_account_is_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/migrations/0002_account_is_email.py -------------------------------------------------------------------------------- /accounts/migrations/0003_alter_account_is_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/migrations/0003_alter_account_is_email.py -------------------------------------------------------------------------------- /accounts/migrations/0004_alter_userprofile_profile_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/migrations/0004_alter_userprofile_profile_picture.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/templates/accounts/account_verification_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/account_verification_email.html -------------------------------------------------------------------------------- /accounts/templates/accounts/dashboard/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/dashboard/change_password.html -------------------------------------------------------------------------------- /accounts/templates/accounts/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/dashboard/dashboard.html -------------------------------------------------------------------------------- /accounts/templates/accounts/dashboard/dashboard_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/dashboard/dashboard_sidebar.html -------------------------------------------------------------------------------- /accounts/templates/accounts/dashboard/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/dashboard/edit_profile.html -------------------------------------------------------------------------------- /accounts/templates/accounts/dashboard/my_orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/dashboard/my_orders.html -------------------------------------------------------------------------------- /accounts/templates/accounts/dashboard/order_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/dashboard/order_details.html -------------------------------------------------------------------------------- /accounts/templates/accounts/forgotpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/forgotpassword.html -------------------------------------------------------------------------------- /accounts/templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/login.html -------------------------------------------------------------------------------- /accounts/templates/accounts/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/register.html -------------------------------------------------------------------------------- /accounts/templates/accounts/reset_password_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/reset_password_email.html -------------------------------------------------------------------------------- /accounts/templates/accounts/resetpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/resetpassword.html -------------------------------------------------------------------------------- /accounts/templates/accounts/user_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/templates/accounts/user_login.html -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/accounts/views.py -------------------------------------------------------------------------------- /adminpannel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adminpannel/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/admin.py -------------------------------------------------------------------------------- /adminpannel/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/apps.py -------------------------------------------------------------------------------- /adminpannel/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/forms.py -------------------------------------------------------------------------------- /adminpannel/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adminpannel/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/models.py -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/AcceptedOrders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/AcceptedOrders.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/AddCoupon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/AddCoupon.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/Cancelled_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/Cancelled_order.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/Category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/Category.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/ProductConfirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/ProductConfirm.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/ViewCategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/ViewCategory.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/ViewCoupons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/ViewCoupons.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/ViewMainCategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/ViewMainCategory.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/addproduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/addproduct.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/admin_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/admin_home.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/admin_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/admin_login.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/adminbase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/adminbase.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/base.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/confirmation.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/editproduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/editproduct.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/loginbase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/loginbase.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/mainCategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/mainCategory.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/orderlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/orderlist.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/pendingProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/pendingProduct.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/soldproduct_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/soldproduct_list.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/test.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/userdetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/userdetails.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/vendor_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/vendor_details.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/vendorrequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/vendorrequest.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/viewproduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/viewproduct.html -------------------------------------------------------------------------------- /adminpannel/templates/adminpannel/viewunlistedproduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/templates/adminpannel/viewunlistedproduct.html -------------------------------------------------------------------------------- /adminpannel/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/tests.py -------------------------------------------------------------------------------- /adminpannel/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/urls.py -------------------------------------------------------------------------------- /adminpannel/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/adminpannel/views.py -------------------------------------------------------------------------------- /cartapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cartapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/admin.py -------------------------------------------------------------------------------- /cartapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/apps.py -------------------------------------------------------------------------------- /cartapp/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/context_processors.py -------------------------------------------------------------------------------- /cartapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /cartapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cartapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/models.py -------------------------------------------------------------------------------- /cartapp/templates/cart/CouponPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/templates/cart/CouponPage.html -------------------------------------------------------------------------------- /cartapp/templates/cart/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/templates/cart/cart.html -------------------------------------------------------------------------------- /cartapp/templates/cart/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/templates/cart/checkout.html -------------------------------------------------------------------------------- /cartapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/tests.py -------------------------------------------------------------------------------- /cartapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/urls.py -------------------------------------------------------------------------------- /cartapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/cartapp/views.py -------------------------------------------------------------------------------- /category/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/category/admin.py -------------------------------------------------------------------------------- /category/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/category/apps.py -------------------------------------------------------------------------------- /category/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/category/context_processors.py -------------------------------------------------------------------------------- /category/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/category/migrations/0001_initial.py -------------------------------------------------------------------------------- /category/migrations/0002_main_category_count_sold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/category/migrations/0002_main_category_count_sold.py -------------------------------------------------------------------------------- /category/migrations/0003_alter_main_category_count_sold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/category/migrations/0003_alter_main_category_count_sold.py -------------------------------------------------------------------------------- /category/migrations/0004_alter_main_category_count_sold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/category/migrations/0004_alter_main_category_count_sold.py -------------------------------------------------------------------------------- /category/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/category/models.py -------------------------------------------------------------------------------- /category/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/category/tests.py -------------------------------------------------------------------------------- /category/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coupon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coupon/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/coupon/admin.py -------------------------------------------------------------------------------- /coupon/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/coupon/apps.py -------------------------------------------------------------------------------- /coupon/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/coupon/migrations/0001_initial.py -------------------------------------------------------------------------------- /coupon/migrations/0002_couponuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/coupon/migrations/0002_couponuser.py -------------------------------------------------------------------------------- /coupon/migrations/0003_rename_couponuser_couponusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/coupon/migrations/0003_rename_couponuser_couponusers.py -------------------------------------------------------------------------------- /coupon/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coupon/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/coupon/models.py -------------------------------------------------------------------------------- /coupon/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/coupon/tests.py -------------------------------------------------------------------------------- /coupon/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /edifice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edifice/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/edifice/asgi.py -------------------------------------------------------------------------------- /edifice/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/edifice/settings.py -------------------------------------------------------------------------------- /edifice/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/edifice/urls.py -------------------------------------------------------------------------------- /edifice/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/edifice/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/manage.py -------------------------------------------------------------------------------- /media/banner_imgs/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/banner_imgs/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp -------------------------------------------------------------------------------- /media/banner_imgs/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1uo6iNW.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/banner_imgs/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1uo6iNW.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1xYUkla.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1xYUkla.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_5SZoIPW.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_5SZoIPW.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_5SbvWJ4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_5SbvWJ4.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_7mLHgdd.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_7mLHgdd.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_B2uSY8T.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_B2uSY8T.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_CO2BYvX.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_CO2BYvX.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_DbOZBCp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_DbOZBCp.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_DkjkHDj.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_DkjkHDj.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_M2n4h9e.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_M2n4h9e.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Q4RpuZf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Q4RpuZf.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_QJdKWoN.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_QJdKWoN.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_ReG5Idj.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_ReG5Idj.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Smkza3C.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Smkza3C.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_W5kVTod.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_W5kVTod.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_WXwitAg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_WXwitAg.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Y4FKToo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Y4FKToo.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_YPOOTOj.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_YPOOTOj.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Z1Xp0uq.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Z1Xp0uq.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_c17olMO.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_c17olMO.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_fiW4X5C.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_fiW4X5C.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_kZO3XSs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_kZO3XSs.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_m4olOu9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_m4olOu9.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_mPRit7H.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_mPRit7H.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_mTLRPe4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_mTLRPe4.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_osD397r.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_osD397r.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_q79C53b.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_q79C53b.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_qGT9hkC.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_qGT9hkC.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_tB1Beq2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_tB1Beq2.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_tWQ7r7K.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_tWQ7r7K.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_uTCfcOC.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_uTCfcOC.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_vLqoyWD.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_vLqoyWD.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_wUxNWch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_wUxNWch.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_zN9cOUL.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_zN9cOUL.webp -------------------------------------------------------------------------------- /media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_zrB42Mh.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_zrB42Mh.webp -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679_.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__3IfGsRF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__3IfGsRF.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__ApJH3HN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__ApJH3HN.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__Hg8uNmx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__Hg8uNmx.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__JXGk2XH.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__JXGk2XH.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__O0BSqd9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__O0BSqd9.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__TxE8U8O.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__TxE8U8O.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__Xf9knWm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__Xf9knWm.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__YzWgGQG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__YzWgGQG.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__eCAc4df.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__eCAc4df.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__g4KpOyb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__g4KpOyb.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__sQBEXaq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__sQBEXaq.jpg -------------------------------------------------------------------------------- /media/product/61CqLgubwoL._SX679__zQJsZyR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61CqLgubwoL._SX679__zQJsZyR.jpg -------------------------------------------------------------------------------- /media/product/61wxafhh8ul._sl1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/61wxafhh8ul._sl1500_.jpg -------------------------------------------------------------------------------- /media/product/653675.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675.jpg -------------------------------------------------------------------------------- /media/product/653675_96vu7CE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_96vu7CE.jpg -------------------------------------------------------------------------------- /media/product/653675_9GLKMpE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_9GLKMpE.jpg -------------------------------------------------------------------------------- /media/product/653675_A3esKpn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_A3esKpn.jpg -------------------------------------------------------------------------------- /media/product/653675_EWChJMC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_EWChJMC.jpg -------------------------------------------------------------------------------- /media/product/653675_Qn0rvtC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_Qn0rvtC.jpg -------------------------------------------------------------------------------- /media/product/653675_R2WOfoh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_R2WOfoh.jpg -------------------------------------------------------------------------------- /media/product/653675_SM91Lvx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_SM91Lvx.jpg -------------------------------------------------------------------------------- /media/product/653675_coud5va.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_coud5va.jpg -------------------------------------------------------------------------------- /media/product/653675_gNS4IwW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_gNS4IwW.jpg -------------------------------------------------------------------------------- /media/product/653675_hJp8EJK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_hJp8EJK.jpg -------------------------------------------------------------------------------- /media/product/653675_khiwhzZ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/653675_khiwhzZ.jpg -------------------------------------------------------------------------------- /media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67.png -------------------------------------------------------------------------------- /media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_7W6ajPe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_7W6ajPe.png -------------------------------------------------------------------------------- /media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_FjzFH7z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_FjzFH7z.png -------------------------------------------------------------------------------- /media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_PrvjB8t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_PrvjB8t.png -------------------------------------------------------------------------------- /media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_UaMv598.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_UaMv598.png -------------------------------------------------------------------------------- /media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_hLBnHYf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_hLBnHYf.png -------------------------------------------------------------------------------- /media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_iQGNrSX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_iQGNrSX.png -------------------------------------------------------------------------------- /media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_tis1Kzj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_tis1Kzj.png -------------------------------------------------------------------------------- /media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_xe0KVVv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_xe0KVVv.png -------------------------------------------------------------------------------- /media/product/acerlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/acerlogo.png -------------------------------------------------------------------------------- /media/product/acerlogo_6nkb7mR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/acerlogo_6nkb7mR.png -------------------------------------------------------------------------------- /media/product/acerlogo_GoBJipp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/acerlogo_GoBJipp.png -------------------------------------------------------------------------------- /media/product/acerlogo_We3E493.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/acerlogo_We3E493.png -------------------------------------------------------------------------------- /media/product/acerlogo_qDg2USm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/acerlogo_qDg2USm.png -------------------------------------------------------------------------------- /media/product/acerlogo_vYA41gF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/acerlogo_vYA41gF.png -------------------------------------------------------------------------------- /media/product/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270.webp -------------------------------------------------------------------------------- /media/product/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_7eR3BA8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_7eR3BA8.webp -------------------------------------------------------------------------------- /media/product/d-slide-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/d-slide-1.png -------------------------------------------------------------------------------- /media/product/d-slide-1_JDaQhh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/d-slide-1_JDaQhh2.png -------------------------------------------------------------------------------- /media/product/d-slide-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/d-slide-3.png -------------------------------------------------------------------------------- /media/product/d-slide-3_2UG6UHn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/d-slide-3_2UG6UHn.png -------------------------------------------------------------------------------- /media/product/d-slide-3_JNnF2Jd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/d-slide-3_JNnF2Jd.png -------------------------------------------------------------------------------- /media/product/d-slide-3_hfZPxzG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/d-slide-3_hfZPxzG.png -------------------------------------------------------------------------------- /media/product/d-slide-3_pPD08Qo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/d-slide-3_pPD08Qo.png -------------------------------------------------------------------------------- /media/product/lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf4ryrazd7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf4ryrazd7.webp -------------------------------------------------------------------------------- /media/product/lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf4ryrazd7_dcSqQxF.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf4ryrazd7_dcSqQxF.webp -------------------------------------------------------------------------------- /media/product/lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf7zcg5tfb_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf7zcg5tfb_1.webp -------------------------------------------------------------------------------- /media/product/processor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/processor.jpg -------------------------------------------------------------------------------- /media/product/slider-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/slider-1.png -------------------------------------------------------------------------------- /media/product/slider-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/slider-2.png -------------------------------------------------------------------------------- /media/product/slider-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/product/slider-3.png -------------------------------------------------------------------------------- /media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp -------------------------------------------------------------------------------- /media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1JMz6wy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1JMz6wy.webp -------------------------------------------------------------------------------- /media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1lsSWqM.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_1lsSWqM.webp -------------------------------------------------------------------------------- /media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_BANvFUu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_BANvFUu.webp -------------------------------------------------------------------------------- /media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_V4VhxfH.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_V4VhxfH.webp -------------------------------------------------------------------------------- /media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Z47Cq0q.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_Z47Cq0q.webp -------------------------------------------------------------------------------- /media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_eg2MQCA.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_eg2MQCA.webp -------------------------------------------------------------------------------- /media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_kKq7DV3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_kKq7DV3.webp -------------------------------------------------------------------------------- /media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_mYRp4g8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_mYRp4g8.webp -------------------------------------------------------------------------------- /media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_uKh9dhA.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_uKh9dhA.webp -------------------------------------------------------------------------------- /media/products/61CqLgubwoL._SX679_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/61CqLgubwoL._SX679_.jpg -------------------------------------------------------------------------------- /media/products/61CqLgubwoL._SX679__QsVGuWd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/61CqLgubwoL._SX679__QsVGuWd.jpg -------------------------------------------------------------------------------- /media/products/61CqLgubwoL._SX679__l6Joyhm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/61CqLgubwoL._SX679__l6Joyhm.jpg -------------------------------------------------------------------------------- /media/products/61wxafhh8ul._sl1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/61wxafhh8ul._sl1500_.jpg -------------------------------------------------------------------------------- /media/products/653675.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/653675.jpg -------------------------------------------------------------------------------- /media/products/653675_OVTkWui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/653675_OVTkWui.jpg -------------------------------------------------------------------------------- /media/products/653675_z4eiTFa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/653675_z4eiTFa.jpg -------------------------------------------------------------------------------- /media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67.png -------------------------------------------------------------------------------- /media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_0KPBYeJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_0KPBYeJ.png -------------------------------------------------------------------------------- /media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_LLrt0jI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_LLrt0jI.png -------------------------------------------------------------------------------- /media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_MObFCJj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_MObFCJj.png -------------------------------------------------------------------------------- /media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_NpYUPJb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_NpYUPJb.png -------------------------------------------------------------------------------- /media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_i2V6nZm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/68747470733a2f2f692e696d6775722e636f6d2f76587771754e432e706e67_i2V6nZm.png -------------------------------------------------------------------------------- /media/products/71BzjAgpk-L._SX522_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/71BzjAgpk-L._SX522_.jpg -------------------------------------------------------------------------------- /media/products/71BzjAgpk-L._SX522__RKri14O.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/71BzjAgpk-L._SX522__RKri14O.jpg -------------------------------------------------------------------------------- /media/products/91ddmP-VCL._SX522_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/91ddmP-VCL._SX522_.jpg -------------------------------------------------------------------------------- /media/products/ASUS_ROG_Strix_NVIDIA_GeForce_RTX_3090.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/ASUS_ROG_Strix_NVIDIA_GeForce_RTX_3090.jpg -------------------------------------------------------------------------------- /media/products/ASUS_ROG_Strix_NVIDIA_GeForce_RTX_3090_0vzlGjM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/ASUS_ROG_Strix_NVIDIA_GeForce_RTX_3090_0vzlGjM.jpg -------------------------------------------------------------------------------- /media/products/F_20220227195351X1J3tx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/F_20220227195351X1J3tx.jpg -------------------------------------------------------------------------------- /media/products/HP_X1000_Wired_USB_Mouse_with_3_Handy_Buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/HP_X1000_Wired_USB_Mouse_with_3_Handy_Buttons.jpg -------------------------------------------------------------------------------- /media/products/Lenovo_D22e-20_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/Lenovo_D22e-20_1.jpg -------------------------------------------------------------------------------- /media/products/Lenovo_D22e-20_1_Bwsfg1M.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/Lenovo_D22e-20_1_Bwsfg1M.jpg -------------------------------------------------------------------------------- /media/products/Lenovo_L22i-30_A21215FL0_54.6cms_21.5_Monitor_-_HDMI.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/Lenovo_L22i-30_A21215FL0_54.6cms_21.5_Monitor_-_HDMI.webp -------------------------------------------------------------------------------- /media/products/Lenovo_L22i-30_A21215FL0_54.6cms_21.5_Monitor_-_HDMI_kfVky3p.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/Lenovo_L22i-30_A21215FL0_54.6cms_21.5_Monitor_-_HDMI_kfVky3p.webp -------------------------------------------------------------------------------- /media/products/Logitech_G402.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/Logitech_G402.jpg -------------------------------------------------------------------------------- /media/products/MSI_GeForce_RTX_3090_Gaming_X_Trio_24G.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/MSI_GeForce_RTX_3090_Gaming_X_Trio_24G.jpg -------------------------------------------------------------------------------- /media/products/MSI_GeForce_RTX_3090_Gaming_X_Trio_24G_ROIiOfC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/MSI_GeForce_RTX_3090_Gaming_X_Trio_24G_ROIiOfC.jpg -------------------------------------------------------------------------------- /media/products/acerlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/acerlogo.png -------------------------------------------------------------------------------- /media/products/acerlogo_I0vT3VL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/acerlogo_I0vT3VL.png -------------------------------------------------------------------------------- /media/products/acerlogo_OxnGU4z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/acerlogo_OxnGU4z.png -------------------------------------------------------------------------------- /media/products/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270.webp -------------------------------------------------------------------------------- /media/products/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_MDzJA5q.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_MDzJA5q.webp -------------------------------------------------------------------------------- /media/products/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_hl2FsKH.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_hl2FsKH.webp -------------------------------------------------------------------------------- /media/products/d-slide-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/d-slide-1.png -------------------------------------------------------------------------------- /media/products/d-slide-1_iM5C25F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/d-slide-1_iM5C25F.png -------------------------------------------------------------------------------- /media/products/d-slide-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/d-slide-3.png -------------------------------------------------------------------------------- /media/products/d-slide-3_eeCdikD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/d-slide-3_eeCdikD.png -------------------------------------------------------------------------------- /media/products/d-slide-3_t8sODkD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/d-slide-3_t8sODkD.png -------------------------------------------------------------------------------- /media/products/d-slide-3_zR4hIyM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/d-slide-3_zR4hIyM.png -------------------------------------------------------------------------------- /media/products/lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf7zcg5tfb_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/lc27g75tqswxxl-lc27g75tqswxxl-samsung-original-imafzqvf7zcg5tfb_1.webp -------------------------------------------------------------------------------- /media/products/lenovologo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/lenovologo.png -------------------------------------------------------------------------------- /media/products/monitor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/monitor.jpg -------------------------------------------------------------------------------- /media/products/pngwing.com_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_3JDu64P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_3JDu64P.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_75u4u1G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_75u4u1G.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_HNPWsjw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_HNPWsjw.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_HpuM5dB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_HpuM5dB.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_LHz1BNa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_LHz1BNa.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_LMrC1bD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_LMrC1bD.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_Ru3h9Mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_Ru3h9Mo.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_W1GVuE2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_W1GVuE2.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_Ww9pQ9d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_Ww9pQ9d.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_la6wjsq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_la6wjsq.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_q4CctiS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_q4CctiS.png -------------------------------------------------------------------------------- /media/products/pngwing.com_4_zB7CVBR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/pngwing.com_4_zB7CVBR.png -------------------------------------------------------------------------------- /media/products/slider-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/products/slider-3.png -------------------------------------------------------------------------------- /media/slider_imgs/slider-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/slider_imgs/slider-1.png -------------------------------------------------------------------------------- /media/slider_imgs/slider-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/slider_imgs/slider-2.png -------------------------------------------------------------------------------- /media/slider_imgs/slider-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/slider_imgs/slider-3.png -------------------------------------------------------------------------------- /media/userprofile/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/userprofile/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp -------------------------------------------------------------------------------- /media/userprofile/d9569bbed4393e2ceb1af7ba64fdf86a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/userprofile/d9569bbed4393e2ceb1af7ba64fdf86a.jpg -------------------------------------------------------------------------------- /media/userprofile/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/userprofile/download.jpg -------------------------------------------------------------------------------- /media/userprofile/download_MQjmTUK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/userprofile/download_MQjmTUK.jpg -------------------------------------------------------------------------------- /media/userprofile/male-silhouette-avatar-profile-picture-260nw-199246382.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/media/userprofile/male-silhouette-avatar-profile-picture-260nw-199246382.webp -------------------------------------------------------------------------------- /order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /order/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/admin.py -------------------------------------------------------------------------------- /order/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/apps.py -------------------------------------------------------------------------------- /order/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/forms.py -------------------------------------------------------------------------------- /order/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/migrations/0001_initial.py -------------------------------------------------------------------------------- /order/migrations/0002_orderproduct_order_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/migrations/0002_orderproduct_order_sum.py -------------------------------------------------------------------------------- /order/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /order/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/models.py -------------------------------------------------------------------------------- /order/templates/orders/order_completed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/templates/orders/order_completed.html -------------------------------------------------------------------------------- /order/templates/orders/order_recieved_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/templates/orders/order_recieved_email.html -------------------------------------------------------------------------------- /order/templates/orders/payments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/templates/orders/payments.html -------------------------------------------------------------------------------- /order/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/tests.py -------------------------------------------------------------------------------- /order/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/urls.py -------------------------------------------------------------------------------- /order/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/order/views.py -------------------------------------------------------------------------------- /photos/categories/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg.webp -------------------------------------------------------------------------------- /photos/categories/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_C8vEkE9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_C8vEkE9.webp -------------------------------------------------------------------------------- /photos/categories/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_NxR2CoY.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_NxR2CoY.webp -------------------------------------------------------------------------------- /photos/categories/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_tmOoQ0O.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/5a91b5a00d958fc3c21053d43666fc79-1024-80.jpg_tmOoQ0O.webp -------------------------------------------------------------------------------- /photos/categories/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270.webp -------------------------------------------------------------------------------- /photos/categories/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_1aRq8F7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_1aRq8F7.webp -------------------------------------------------------------------------------- /photos/categories/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_8LFTIpP.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_8LFTIpP.webp -------------------------------------------------------------------------------- /photos/categories/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_9AYNh8T.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_9AYNh8T.webp -------------------------------------------------------------------------------- /photos/categories/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_Cfrgb8k.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/core-x-series-framed-badge-rwd.jpg.rendition.intel.web.480.270_Cfrgb8k.webp -------------------------------------------------------------------------------- /photos/categories/d-slide-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/d-slide-1.png -------------------------------------------------------------------------------- /photos/categories/pngwing.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/pngwing.com.png -------------------------------------------------------------------------------- /photos/categories/pngwing.com_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/pngwing.com_3.png -------------------------------------------------------------------------------- /photos/categories/pngwing.com_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/pngwing.com_4.png -------------------------------------------------------------------------------- /photos/categories/power-GPU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/power-GPU.jpg -------------------------------------------------------------------------------- /photos/categories/power-GPU_2DFyRLJ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/power-GPU_2DFyRLJ.jpg -------------------------------------------------------------------------------- /photos/categories/predator_monitor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/predator_monitor.webp -------------------------------------------------------------------------------- /photos/categories/processor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/photos/categories/processor.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/assets/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/css/demo.css -------------------------------------------------------------------------------- /static/assets/img/avatars/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/avatars/1.png -------------------------------------------------------------------------------- /static/assets/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/favicon/favicon.ico -------------------------------------------------------------------------------- /static/assets/img/icons/brands/asana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/brands/asana.png -------------------------------------------------------------------------------- /static/assets/img/icons/brands/behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/brands/behance.png -------------------------------------------------------------------------------- /static/assets/img/icons/brands/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/brands/dribbble.png -------------------------------------------------------------------------------- /static/assets/img/icons/brands/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/brands/facebook.png -------------------------------------------------------------------------------- /static/assets/img/icons/brands/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/brands/github.png -------------------------------------------------------------------------------- /static/assets/img/icons/brands/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/brands/google.png -------------------------------------------------------------------------------- /static/assets/img/icons/brands/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/brands/instagram.png -------------------------------------------------------------------------------- /static/assets/img/icons/brands/mailchimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/brands/mailchimp.png -------------------------------------------------------------------------------- /static/assets/img/icons/brands/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/brands/slack.png -------------------------------------------------------------------------------- /static/assets/img/icons/brands/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/brands/twitter.png -------------------------------------------------------------------------------- /static/assets/img/icons/unicons/cc-primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/unicons/cc-primary.png -------------------------------------------------------------------------------- /static/assets/img/icons/unicons/cc-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/unicons/cc-success.png -------------------------------------------------------------------------------- /static/assets/img/icons/unicons/cc-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/unicons/cc-warning.png -------------------------------------------------------------------------------- /static/assets/img/icons/unicons/chart-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/unicons/chart-success.png -------------------------------------------------------------------------------- /static/assets/img/icons/unicons/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/unicons/chart.png -------------------------------------------------------------------------------- /static/assets/img/icons/unicons/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/unicons/paypal.png -------------------------------------------------------------------------------- /static/assets/img/icons/unicons/wallet-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/unicons/wallet-info.png -------------------------------------------------------------------------------- /static/assets/img/icons/unicons/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/icons/unicons/wallet.png -------------------------------------------------------------------------------- /static/assets/img/illustrations/man-with-laptop-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/illustrations/man-with-laptop-light.png -------------------------------------------------------------------------------- /static/assets/img/illustrations/page-misc-error-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/img/illustrations/page-misc-error-light.png -------------------------------------------------------------------------------- /static/assets/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/js/config.js -------------------------------------------------------------------------------- /static/assets/js/dashboards-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/js/dashboards-analytics.js -------------------------------------------------------------------------------- /static/assets/js/extended-ui-perfect-scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/js/extended-ui-perfect-scrollbar.js -------------------------------------------------------------------------------- /static/assets/js/form-basic-inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/js/form-basic-inputs.js -------------------------------------------------------------------------------- /static/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/js/main.js -------------------------------------------------------------------------------- /static/assets/js/pages-account-settings-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/js/pages-account-settings-account.js -------------------------------------------------------------------------------- /static/assets/js/ui-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/js/ui-modals.js -------------------------------------------------------------------------------- /static/assets/js/ui-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/js/ui-popover.js -------------------------------------------------------------------------------- /static/assets/js/ui-toasts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/js/ui-toasts.js -------------------------------------------------------------------------------- /static/assets/vendor/css/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/css/core.css -------------------------------------------------------------------------------- /static/assets/vendor/css/pages/page-account-settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/css/pages/page-account-settings.css -------------------------------------------------------------------------------- /static/assets/vendor/css/pages/page-auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/css/pages/page-auth.css -------------------------------------------------------------------------------- /static/assets/vendor/css/pages/page-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/css/pages/page-icons.css -------------------------------------------------------------------------------- /static/assets/vendor/css/pages/page-misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/css/pages/page-misc.css -------------------------------------------------------------------------------- /static/assets/vendor/css/theme-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/css/theme-default.css -------------------------------------------------------------------------------- /static/assets/vendor/fonts/boxicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/fonts/boxicons.css -------------------------------------------------------------------------------- /static/assets/vendor/fonts/boxicons/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/fonts/boxicons/boxicons.eot -------------------------------------------------------------------------------- /static/assets/vendor/fonts/boxicons/boxicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/fonts/boxicons/boxicons.svg -------------------------------------------------------------------------------- /static/assets/vendor/fonts/boxicons/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/fonts/boxicons/boxicons.ttf -------------------------------------------------------------------------------- /static/assets/vendor/fonts/boxicons/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/fonts/boxicons/boxicons.woff -------------------------------------------------------------------------------- /static/assets/vendor/fonts/boxicons/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/fonts/boxicons/boxicons.woff2 -------------------------------------------------------------------------------- /static/assets/vendor/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/js/bootstrap.js -------------------------------------------------------------------------------- /static/assets/vendor/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/js/helpers.js -------------------------------------------------------------------------------- /static/assets/vendor/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/js/menu.js -------------------------------------------------------------------------------- /static/assets/vendor/libs/apex-charts/apex-charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/libs/apex-charts/apex-charts.css -------------------------------------------------------------------------------- /static/assets/vendor/libs/apex-charts/apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/libs/apex-charts/apexcharts.js -------------------------------------------------------------------------------- /static/assets/vendor/libs/highlight/highlight-github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/libs/highlight/highlight-github.css -------------------------------------------------------------------------------- /static/assets/vendor/libs/highlight/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/libs/highlight/highlight.css -------------------------------------------------------------------------------- /static/assets/vendor/libs/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/libs/highlight/highlight.js -------------------------------------------------------------------------------- /static/assets/vendor/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/libs/jquery/jquery.js -------------------------------------------------------------------------------- /static/assets/vendor/libs/masonry/masonry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/libs/masonry/masonry.js -------------------------------------------------------------------------------- /static/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.css -------------------------------------------------------------------------------- /static/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.js -------------------------------------------------------------------------------- /static/assets/vendor/libs/popper/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/assets/vendor/libs/popper/popper.js -------------------------------------------------------------------------------- /static/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/animate.css -------------------------------------------------------------------------------- /static/css/backtotop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/backtotop.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/custom.css -------------------------------------------------------------------------------- /static/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/default.css -------------------------------------------------------------------------------- /static/css/font-awesome-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/font-awesome-pro.css -------------------------------------------------------------------------------- /static/css/images/ui-icons_444444_256x240.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/images/ui-icons_444444_256x240.html -------------------------------------------------------------------------------- /static/css/images/ui-icons_555555_256x240.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/images/ui-icons_555555_256x240.html -------------------------------------------------------------------------------- /static/css/images/ui-icons_777620_256x240.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/images/ui-icons_777620_256x240.html -------------------------------------------------------------------------------- /static/css/images/ui-icons_777777_256x240.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/images/ui-icons_777777_256x240.html -------------------------------------------------------------------------------- /static/css/images/ui-icons_cc0000_256x240.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/images/ui-icons_cc0000_256x240.html -------------------------------------------------------------------------------- /static/css/images/ui-icons_ffffff_256x240.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/images/ui-icons_ffffff_256x240.html -------------------------------------------------------------------------------- /static/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/magnific-popup.css -------------------------------------------------------------------------------- /static/css/meanmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/meanmenu.css -------------------------------------------------------------------------------- /static/css/nice-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/nice-select.css -------------------------------------------------------------------------------- /static/css/owl-carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/owl-carousel.css -------------------------------------------------------------------------------- /static/css/owl.video.play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/owl.video.play.html -------------------------------------------------------------------------------- /static/css/preloader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/preloader.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/swiper-bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/swiper-bundle.css -------------------------------------------------------------------------------- /static/css/ui-range-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/css/ui-range-slider.css -------------------------------------------------------------------------------- /static/flaticon/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/flaticon/flaticon.css -------------------------------------------------------------------------------- /static/flaticon/flaticon10fb.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/flaticon/flaticon10fb.eot -------------------------------------------------------------------------------- /static/flaticon/flaticon10fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/flaticon/flaticon10fb.svg -------------------------------------------------------------------------------- /static/flaticon/flaticon10fb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/flaticon/flaticon10fb.ttf -------------------------------------------------------------------------------- /static/flaticon/flaticon10fb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/flaticon/flaticon10fb.woff -------------------------------------------------------------------------------- /static/flaticon/flaticon10fb.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/flaticon/flaticon10fb.woff2 -------------------------------------------------------------------------------- /static/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/fonts/fa-brands-400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-brands-400.html -------------------------------------------------------------------------------- /static/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/fonts/fa-brands-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-brands-400d41d.eot -------------------------------------------------------------------------------- /static/fonts/fa-duotone-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-duotone-900.eot -------------------------------------------------------------------------------- /static/fonts/fa-duotone-900.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-duotone-900.html -------------------------------------------------------------------------------- /static/fonts/fa-duotone-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-duotone-900.ttf -------------------------------------------------------------------------------- /static/fonts/fa-duotone-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-duotone-900.woff -------------------------------------------------------------------------------- /static/fonts/fa-duotone-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-duotone-900.woff2 -------------------------------------------------------------------------------- /static/fonts/fa-duotone-900d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-duotone-900d41d.eot -------------------------------------------------------------------------------- /static/fonts/fa-light-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-light-300.eot -------------------------------------------------------------------------------- /static/fonts/fa-light-300.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-light-300.html -------------------------------------------------------------------------------- /static/fonts/fa-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-light-300.ttf -------------------------------------------------------------------------------- /static/fonts/fa-light-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-light-300.woff -------------------------------------------------------------------------------- /static/fonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /static/fonts/fa-light-300d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-light-300d41d.eot -------------------------------------------------------------------------------- /static/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/fonts/fa-regular-400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-regular-400.html -------------------------------------------------------------------------------- /static/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/fonts/fa-regular-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-regular-400d41d.eot -------------------------------------------------------------------------------- /static/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/fonts/fa-solid-900.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-solid-900.html -------------------------------------------------------------------------------- /static/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/fonts/fa-solid-900d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/fonts/fa-solid-900d41d.eot -------------------------------------------------------------------------------- /static/img/about/ab-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/about/ab-01.jpg -------------------------------------------------------------------------------- /static/img/about/ab-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/about/ab-02.jpg -------------------------------------------------------------------------------- /static/img/about/about-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/about/about-b.png -------------------------------------------------------------------------------- /static/img/about/c-icon-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/about/c-icon-01.png -------------------------------------------------------------------------------- /static/img/author/author-sm-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/author/author-sm-1.jpg -------------------------------------------------------------------------------- /static/img/banner/page-banner-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/banner/page-banner-4.jpg -------------------------------------------------------------------------------- /static/img/blog/blog-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/blog-thumb.jpg -------------------------------------------------------------------------------- /static/img/blog/incen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/incen.jpg -------------------------------------------------------------------------------- /static/img/blog/news-author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/news-author.jpg -------------------------------------------------------------------------------- /static/img/blog/p-author-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/p-author-1.jpg -------------------------------------------------------------------------------- /static/img/blog/p-author-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/p-author-2.jpg -------------------------------------------------------------------------------- /static/img/blog/p-author-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/p-author-3.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b-1.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b-2.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b-3.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b-4.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b-5.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b-6.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b2-1.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b2-2.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b2-3.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b2-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b2-4.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b2-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b2-5.jpg -------------------------------------------------------------------------------- /static/img/blog/sm-b2-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sm-b2-6.jpg -------------------------------------------------------------------------------- /static/img/blog/sponsor-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/blog/sponsor-3.jpg -------------------------------------------------------------------------------- /static/img/brand/app_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/brand/app_android.png -------------------------------------------------------------------------------- /static/img/brand/app_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/brand/app_ios.png -------------------------------------------------------------------------------- /static/img/brand/brand-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/brand/brand-1.jpg -------------------------------------------------------------------------------- /static/img/brand/brand-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/brand/brand-2.jpg -------------------------------------------------------------------------------- /static/img/brand/brand-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/brand/brand-3.jpg -------------------------------------------------------------------------------- /static/img/brand/brand-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/brand/brand-4.jpg -------------------------------------------------------------------------------- /static/img/brand/brand-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/brand/brand-5.jpg -------------------------------------------------------------------------------- /static/img/brand/brand-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/brand/brand-6.jpg -------------------------------------------------------------------------------- /static/img/cart/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/cart/20.jpg -------------------------------------------------------------------------------- /static/img/cart/shop-p-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/cart/shop-p-10.jpg -------------------------------------------------------------------------------- /static/img/cart/shop-p-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/cart/shop-p-11.jpg -------------------------------------------------------------------------------- /static/img/categorie/cat-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/categorie/cat-1.jpg -------------------------------------------------------------------------------- /static/img/categorie/cat-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/categorie/cat-2.jpg -------------------------------------------------------------------------------- /static/img/categorie/cat-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/categorie/cat-3.jpg -------------------------------------------------------------------------------- /static/img/categorie/cat-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/categorie/cat-4.jpg -------------------------------------------------------------------------------- /static/img/categorie/cat-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/categorie/cat-5.jpg -------------------------------------------------------------------------------- /static/img/categorie/cat-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/categorie/cat-6.jpg -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/features-product/fp-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-1.jpg -------------------------------------------------------------------------------- /static/img/features-product/fp-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-10.jpg -------------------------------------------------------------------------------- /static/img/features-product/fp-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-11.jpg -------------------------------------------------------------------------------- /static/img/features-product/fp-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-12.jpg -------------------------------------------------------------------------------- /static/img/features-product/fp-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-2.jpg -------------------------------------------------------------------------------- /static/img/features-product/fp-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-3.jpg -------------------------------------------------------------------------------- /static/img/features-product/fp-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-4.jpg -------------------------------------------------------------------------------- /static/img/features-product/fp-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-6.jpg -------------------------------------------------------------------------------- /static/img/features-product/fp-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-7.jpg -------------------------------------------------------------------------------- /static/img/features-product/fp-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-8.jpg -------------------------------------------------------------------------------- /static/img/features-product/fp-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fp-9.jpg -------------------------------------------------------------------------------- /static/img/features-product/fpb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fpb-1.jpg -------------------------------------------------------------------------------- /static/img/features-product/fpb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fpb-2.jpg -------------------------------------------------------------------------------- /static/img/features-product/fpsm-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fpsm-1.jpg -------------------------------------------------------------------------------- /static/img/features-product/fpsm-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/fpsm-2.jpg -------------------------------------------------------------------------------- /static/img/features-product/product-content-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/product-content-1.jpg -------------------------------------------------------------------------------- /static/img/features-product/product-content-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/product-content-2.jpg -------------------------------------------------------------------------------- /static/img/features-product/product-content-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/product-content-3.jpg -------------------------------------------------------------------------------- /static/img/features-product/product-content-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/product-content-4.jpg -------------------------------------------------------------------------------- /static/img/features-product/product-content-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/product-content-5.png -------------------------------------------------------------------------------- /static/img/features-product/product-content-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/features-product/product-content-6.png -------------------------------------------------------------------------------- /static/img/gallery/gal-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/gallery/gal-1.jpg -------------------------------------------------------------------------------- /static/img/gallery/gal-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/gallery/gal-2.jpg -------------------------------------------------------------------------------- /static/img/gallery/gal-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/gallery/gal-3.jpg -------------------------------------------------------------------------------- /static/img/gallery/gal-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/gallery/gal-4.jpg -------------------------------------------------------------------------------- /static/img/gallery/gal-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/gallery/gal-5.jpg -------------------------------------------------------------------------------- /static/img/gallery/gal-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/gallery/gal-6.jpg -------------------------------------------------------------------------------- /static/img/location/location-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/location/location-1.jpg -------------------------------------------------------------------------------- /static/img/location/location-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/location/location-2.jpg -------------------------------------------------------------------------------- /static/img/location/location-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/location/location-3.jpg -------------------------------------------------------------------------------- /static/img/location/location-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/location/location-4.jpg -------------------------------------------------------------------------------- /static/img/logo/edifce.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/logo/edifce.jpeg -------------------------------------------------------------------------------- /static/img/logo/edifice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/logo/edifice2.png -------------------------------------------------------------------------------- /static/img/logo/logo1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/logo/logo1.svg -------------------------------------------------------------------------------- /static/img/logo/product-not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/logo/product-not-found.png -------------------------------------------------------------------------------- /static/img/payment/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/payment/payment.png -------------------------------------------------------------------------------- /static/img/product/nav/product-nav-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/nav/product-nav-1.jpg -------------------------------------------------------------------------------- /static/img/product/nav/product-nav-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/nav/product-nav-2.jpg -------------------------------------------------------------------------------- /static/img/product/nav/product-nav-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/nav/product-nav-3.jpg -------------------------------------------------------------------------------- /static/img/product/nav/product-nav-big-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/nav/product-nav-big-1.jpg -------------------------------------------------------------------------------- /static/img/product/nav/product-nav-big-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/nav/product-nav-big-2.jpg -------------------------------------------------------------------------------- /static/img/product/nav/product-nav-big-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/nav/product-nav-big-3.jpg -------------------------------------------------------------------------------- /static/img/product/sm-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/sm-1.jpg -------------------------------------------------------------------------------- /static/img/product/sm-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/sm-2.jpg -------------------------------------------------------------------------------- /static/img/product/sm-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/sm-3.jpg -------------------------------------------------------------------------------- /static/img/product/sm-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/sm-4.jpg -------------------------------------------------------------------------------- /static/img/product/sm-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/sm-5.jpg -------------------------------------------------------------------------------- /static/img/product/sm-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/sm-6.jpg -------------------------------------------------------------------------------- /static/img/product/sm-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/sm-7.jpg -------------------------------------------------------------------------------- /static/img/product/sm-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/sm-8.jpg -------------------------------------------------------------------------------- /static/img/product/tp-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-1.jpg -------------------------------------------------------------------------------- /static/img/product/tp-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-10.jpg -------------------------------------------------------------------------------- /static/img/product/tp-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-12.jpg -------------------------------------------------------------------------------- /static/img/product/tp-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-13.jpg -------------------------------------------------------------------------------- /static/img/product/tp-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-14.jpg -------------------------------------------------------------------------------- /static/img/product/tp-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-15.jpg -------------------------------------------------------------------------------- /static/img/product/tp-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-16.jpg -------------------------------------------------------------------------------- /static/img/product/tp-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-17.jpg -------------------------------------------------------------------------------- /static/img/product/tp-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-18.jpg -------------------------------------------------------------------------------- /static/img/product/tp-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-2.jpg -------------------------------------------------------------------------------- /static/img/product/tp-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-20.jpg -------------------------------------------------------------------------------- /static/img/product/tp-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-22.jpg -------------------------------------------------------------------------------- /static/img/product/tp-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-23.jpg -------------------------------------------------------------------------------- /static/img/product/tp-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-24.jpg -------------------------------------------------------------------------------- /static/img/product/tp-26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-26.jpg -------------------------------------------------------------------------------- /static/img/product/tp-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-3.jpg -------------------------------------------------------------------------------- /static/img/product/tp-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-4.jpg -------------------------------------------------------------------------------- /static/img/product/tp-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-5.jpg -------------------------------------------------------------------------------- /static/img/product/tp-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-6.jpg -------------------------------------------------------------------------------- /static/img/product/tp-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-7.jpg -------------------------------------------------------------------------------- /static/img/product/tp-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/product/tp-9.jpg -------------------------------------------------------------------------------- /static/img/quick-view/quick-nav-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/quick-view/quick-nav-1.jpg -------------------------------------------------------------------------------- /static/img/quick-view/quick-nav-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/quick-view/quick-nav-2.jpg -------------------------------------------------------------------------------- /static/img/quick-view/quick-nav-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/quick-view/quick-nav-3.jpg -------------------------------------------------------------------------------- /static/img/quick-view/quick-nav-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/quick-view/quick-nav-4.jpg -------------------------------------------------------------------------------- /static/img/quick-view/quick-view-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/quick-view/quick-view-1.jpg -------------------------------------------------------------------------------- /static/img/quick-view/quick-view-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/quick-view/quick-view-2.jpg -------------------------------------------------------------------------------- /static/img/quick-view/quick-view-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/quick-view/quick-view-3.jpg -------------------------------------------------------------------------------- /static/img/quick-view/quick-view-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/quick-view/quick-view-4.jpg -------------------------------------------------------------------------------- /static/img/slider/01-slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/slider/01-slide-1.jpg -------------------------------------------------------------------------------- /static/img/slider/01-slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/slider/01-slide-2.jpg -------------------------------------------------------------------------------- /static/img/slider/01-slide-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/slider/01-slide-3.jpg -------------------------------------------------------------------------------- /static/img/slider/02-slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/slider/02-slide-1.jpg -------------------------------------------------------------------------------- /static/img/slider/02-slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/slider/02-slide-2.jpg -------------------------------------------------------------------------------- /static/img/slider/02-slide-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/slider/02-slide-3.jpg -------------------------------------------------------------------------------- /static/img/slider/03-slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/slider/03-slide-1.jpg -------------------------------------------------------------------------------- /static/img/slider/03-slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/slider/03-slide-2.jpg -------------------------------------------------------------------------------- /static/img/slider/03-slide-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/slider/03-slide-3.jpg -------------------------------------------------------------------------------- /static/img/team/person-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/team/person-3.jpg -------------------------------------------------------------------------------- /static/img/team/person-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/team/person-4.jpg -------------------------------------------------------------------------------- /static/img/team/person-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/img/team/person-5.jpg -------------------------------------------------------------------------------- /static/js/ajax-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/ajax-form.js -------------------------------------------------------------------------------- /static/js/backtotop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/backtotop.js -------------------------------------------------------------------------------- /static/js/bootstrap-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/bootstrap-bundle.js -------------------------------------------------------------------------------- /static/js/countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/countdown.min.js -------------------------------------------------------------------------------- /static/js/counterup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/counterup.js -------------------------------------------------------------------------------- /static/js/imagesloaded-pkgd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/imagesloaded-pkgd.js -------------------------------------------------------------------------------- /static/js/isotope-pkgd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/isotope-pkgd.js -------------------------------------------------------------------------------- /static/js/magnific-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/magnific-popup.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/meanmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/meanmenu.js -------------------------------------------------------------------------------- /static/js/nice-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/nice-select.js -------------------------------------------------------------------------------- /static/js/owl-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/owl-carousel.js -------------------------------------------------------------------------------- /static/js/parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/parallax.js -------------------------------------------------------------------------------- /static/js/swiper-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/swiper-bundle.js -------------------------------------------------------------------------------- /static/js/tweenmax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/tweenmax.js -------------------------------------------------------------------------------- /static/js/ui-slider-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/ui-slider-range.js -------------------------------------------------------------------------------- /static/js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/vendor/jquery.js -------------------------------------------------------------------------------- /static/js/vendor/waypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/vendor/waypoints.js -------------------------------------------------------------------------------- /static/js/wow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/static/js/wow.js -------------------------------------------------------------------------------- /store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/admin.py -------------------------------------------------------------------------------- /store/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/apps.py -------------------------------------------------------------------------------- /store/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/forms.py -------------------------------------------------------------------------------- /store/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/migrations/0001_initial.py -------------------------------------------------------------------------------- /store/migrations/0002_alter_product_mrp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/migrations/0002_alter_product_mrp.py -------------------------------------------------------------------------------- /store/migrations/0003_alter_product_mrp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/migrations/0003_alter_product_mrp.py -------------------------------------------------------------------------------- /store/migrations/0004_alter_product_mrp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/migrations/0004_alter_product_mrp.py -------------------------------------------------------------------------------- /store/migrations/0005_product_count_sold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/migrations/0005_product_count_sold.py -------------------------------------------------------------------------------- /store/migrations/0006_alter_product_count_sold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/migrations/0006_alter_product_count_sold.py -------------------------------------------------------------------------------- /store/migrations/0007_remove_product_count_sold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/migrations/0007_remove_product_count_sold.py -------------------------------------------------------------------------------- /store/migrations/0008_product_count_sold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/migrations/0008_product_count_sold.py -------------------------------------------------------------------------------- /store/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/models.py -------------------------------------------------------------------------------- /store/templates/store/product_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/templates/store/product_details.html -------------------------------------------------------------------------------- /store/templates/store/store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/templates/store/store.html -------------------------------------------------------------------------------- /store/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/tests.py -------------------------------------------------------------------------------- /store/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/urls.py -------------------------------------------------------------------------------- /store/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/store/views.py -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/includes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/templates/includes/alert.html -------------------------------------------------------------------------------- /templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/templates/includes/footer.html -------------------------------------------------------------------------------- /templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/templates/includes/header.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/main/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/templates/main/home.html -------------------------------------------------------------------------------- /user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/user/admin.py -------------------------------------------------------------------------------- /user/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/user/apps.py -------------------------------------------------------------------------------- /user/forms.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /user/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/user/tests.py -------------------------------------------------------------------------------- /user/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/user/urls.py -------------------------------------------------------------------------------- /user/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/user/views.py -------------------------------------------------------------------------------- /vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/admin.py -------------------------------------------------------------------------------- /vendor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/apps.py -------------------------------------------------------------------------------- /vendor/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/forms.py -------------------------------------------------------------------------------- /vendor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/models.py -------------------------------------------------------------------------------- /vendor/templates/vendor/Cancelled_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/Cancelled_order.html -------------------------------------------------------------------------------- /vendor/templates/vendor/add_product_adminmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/add_product_adminmail.html -------------------------------------------------------------------------------- /vendor/templates/vendor/addproduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/addproduct.html -------------------------------------------------------------------------------- /vendor/templates/vendor/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/base.html -------------------------------------------------------------------------------- /vendor/templates/vendor/confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/confirmation.html -------------------------------------------------------------------------------- /vendor/templates/vendor/forgotpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/forgotpassword.html -------------------------------------------------------------------------------- /vendor/templates/vendor/loginbase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/loginbase.html -------------------------------------------------------------------------------- /vendor/templates/vendor/orderlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/orderlist.html -------------------------------------------------------------------------------- /vendor/templates/vendor/registerbase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/registerbase.html -------------------------------------------------------------------------------- /vendor/templates/vendor/reset_password_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/reset_password_email.html -------------------------------------------------------------------------------- /vendor/templates/vendor/resetpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/resetpassword.html -------------------------------------------------------------------------------- /vendor/templates/vendor/soldproduct_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/soldproduct_list.html -------------------------------------------------------------------------------- /vendor/templates/vendor/unlisted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/unlisted.html -------------------------------------------------------------------------------- /vendor/templates/vendor/vendor_activation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/vendor_activation.html -------------------------------------------------------------------------------- /vendor/templates/vendor/vendor_reset_password_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/vendor_reset_password_email.html -------------------------------------------------------------------------------- /vendor/templates/vendor/vendorhome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/vendorhome.html -------------------------------------------------------------------------------- /vendor/templates/vendor/vendorlogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/vendorlogin.html -------------------------------------------------------------------------------- /vendor/templates/vendor/vendorregister.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/vendorregister.html -------------------------------------------------------------------------------- /vendor/templates/vendor/viewproduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/templates/vendor/viewproduct.html -------------------------------------------------------------------------------- /vendor/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/tests.py -------------------------------------------------------------------------------- /vendor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/urls.py -------------------------------------------------------------------------------- /vendor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/vendor/views.py -------------------------------------------------------------------------------- /wishlists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wishlists/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/wishlists/admin.py -------------------------------------------------------------------------------- /wishlists/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/wishlists/apps.py -------------------------------------------------------------------------------- /wishlists/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/wishlists/context_processors.py -------------------------------------------------------------------------------- /wishlists/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/wishlists/migrations/0001_initial.py -------------------------------------------------------------------------------- /wishlists/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wishlists/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/wishlists/models.py -------------------------------------------------------------------------------- /wishlists/templates/wishlist/wishlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/wishlists/templates/wishlist/wishlist.html -------------------------------------------------------------------------------- /wishlists/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/wishlists/tests.py -------------------------------------------------------------------------------- /wishlists/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/wishlists/urls.py -------------------------------------------------------------------------------- /wishlists/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilDevassia/edifice-ecommerce/HEAD/wishlists/views.py --------------------------------------------------------------------------------