├── .env-sample ├── .gitattributes ├── .gitignore ├── README.md ├── accounts ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_userprofile.py │ ├── 0003_auto_20210322_0422.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── carts ├── __init__.py ├── admin.py ├── apps.py ├── context_processors.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_cartitem_variations.py │ ├── 0003_auto_20210308_1648.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── category ├── __init__.py ├── admin.py ├── apps.py ├── context_processors.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20201006_0125.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── greatkart ├── __init__.py ├── asgi.py ├── settings.py ├── static │ ├── css │ │ ├── .DS_Store │ │ ├── bootstrap.css │ │ ├── custom.css │ │ ├── responsive.css │ │ ├── responsive.css.map │ │ ├── ui.css │ │ └── ui.css.map │ ├── fonts │ │ ├── .DS_Store │ │ ├── feathericons │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ └── iconfont.css │ │ │ ├── feather.jpg │ │ │ ├── fonts │ │ │ │ ├── feather.eot │ │ │ │ ├── feather.svg │ │ │ │ ├── feather.ttf │ │ │ │ └── feather.woff │ │ │ ├── icons │ │ │ │ ├── activity.svg │ │ │ │ ├── airplay.svg │ │ │ │ ├── alert-circle.svg │ │ │ │ ├── alert-octagon.svg │ │ │ │ ├── alert-triangle.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── aperture.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ ├── arrow-down-left.svg │ │ │ │ ├── arrow-down-right.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-circle.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right-circle.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ ├── arrow-up-left.svg │ │ │ │ ├── arrow-up-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── at-sign.svg │ │ │ │ ├── award.svg │ │ │ │ ├── bar-chart-2.svg │ │ │ │ ├── bar-chart-line-2.svg │ │ │ │ ├── bar-chart-line.svg │ │ │ │ ├── bar-chart.svg │ │ │ │ ├── battery-charging.svg │ │ │ │ ├── battery.svg │ │ │ │ ├── bell-off.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── box.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-off.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── cast.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── chevrons-down.svg │ │ │ │ ├── chevrons-left.svg │ │ │ │ ├── chevrons-right.svg │ │ │ │ ├── chevrons-up.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── cloud-drizzle.svg │ │ │ │ ├── cloud-lightning.svg │ │ │ │ ├── cloud-off.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-snow.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── code.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── command.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── corner-down-left.svg │ │ │ │ ├── corner-down-right.svg │ │ │ │ ├── corner-left-down.svg │ │ │ │ ├── corner-left-up.svg │ │ │ │ ├── corner-right-down.svg │ │ │ │ ├── corner-right-up.svg │ │ │ │ ├── corner-up-left.svg │ │ │ │ ├── corner-up-right.svg │ │ │ │ ├── cpu.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── crosshair.svg │ │ │ │ ├── database.svg │ │ │ │ ├── delete.svg │ │ │ │ ├── disc.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── download-cloud.svg │ │ │ │ ├── download.svg │ │ │ │ ├── droplet.svg │ │ │ │ ├── edit-2.svg │ │ │ │ ├── edit-3.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── external-link.svg │ │ │ │ ├── eye-off.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── file-minus.svg │ │ │ │ ├── file-plus.svg │ │ │ │ ├── file-text.svg │ │ │ │ ├── file.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── git-branch.svg │ │ │ │ ├── git-commit.svg │ │ │ │ ├── git-merge.svg │ │ │ │ ├── git-pull-request.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── hard-drive.svg │ │ │ │ ├── hash.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── heart-on.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── help-circle.svg │ │ │ │ ├── home.svg │ │ │ │ ├── image.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── info.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── layers.svg │ │ │ │ ├── layout.svg │ │ │ │ ├── life-buoy.svg │ │ │ │ ├── link-2.svg │ │ │ │ ├── link.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── list.svg │ │ │ │ ├── loader.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── log-in.svg │ │ │ │ ├── log-out.svg │ │ │ │ ├── mail.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map.svg │ │ │ │ ├── maximize-2.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── message-circle.svg │ │ │ │ ├── message-square.svg │ │ │ │ ├── mic-off.svg │ │ │ │ ├── mic.svg │ │ │ │ ├── minimize-2.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── more-horizontal-2.svg │ │ │ │ ├── more-horizontal.svg │ │ │ │ ├── more-vertical-2.svg │ │ │ │ ├── more-vertical.svg │ │ │ │ ├── move.svg │ │ │ │ ├── music.svg │ │ │ │ ├── navigation-2.svg │ │ │ │ ├── navigation.svg │ │ │ │ ├── octagon.svg │ │ │ │ ├── package.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── phone-call.svg │ │ │ │ ├── phone-forwarded.svg │ │ │ │ ├── phone-incoming.svg │ │ │ │ ├── phone-missed.svg │ │ │ │ ├── phone-off.svg │ │ │ │ ├── phone-outgoing.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── pie-chart.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── pocket.svg │ │ │ │ ├── power.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── radio.svg │ │ │ │ ├── refresh-ccw.svg │ │ │ │ ├── refresh-cw.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── rewind.svg │ │ │ │ ├── rotate-ccw.svg │ │ │ │ ├── rotate-cw.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── save.svg │ │ │ │ ├── scissors.svg │ │ │ │ ├── search.svg │ │ │ │ ├── send.svg │ │ │ │ ├── server.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── share-2.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shield-off.svg │ │ │ │ ├── shield.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── sidebar.svg │ │ │ │ ├── skip-back.svg │ │ │ │ ├── skip-forward.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sliders.svg │ │ │ │ ├── smartphone.svg │ │ │ │ ├── speaker.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-on.svg │ │ │ │ ├── star.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── sunrise.svg │ │ │ │ ├── sunset.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── target.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── toggle-left.svg │ │ │ │ ├── toggle-right.svg │ │ │ │ ├── trash-2.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── trending-down.svg │ │ │ │ ├── trending-up.svg │ │ │ │ ├── triangle.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── type.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload-cloud.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-x.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users.svg │ │ │ │ ├── video-off.svg │ │ │ │ ├── video.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volume-1.svg │ │ │ │ ├── volume-2.svg │ │ │ │ ├── volume-x.svg │ │ │ │ ├── volume.svg │ │ │ │ ├── watch.svg │ │ │ │ ├── wifi-off.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── x-circle.svg │ │ │ │ ├── x-square.svg │ │ │ │ ├── x.svg │ │ │ │ ├── youtube.svg │ │ │ │ ├── zap-off.svg │ │ │ │ ├── zap.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ └── zoom-out.svg │ │ │ ├── index.css │ │ │ └── preview.html │ │ ├── fontawesome │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ ├── .DS_Store │ │ │ │ ├── all.css │ │ │ │ └── all.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── material-icons │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ ├── .DS_Store │ │ │ │ ├── materialdesignicons.css │ │ │ │ └── materialdesignicons.css.map │ │ │ ├── fonts │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ ├── license.md │ │ │ ├── preview.html │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── materialdesignicons.scss │ │ └── roboto │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── font-min.css │ │ │ └── font.css │ ├── images │ │ ├── avatars │ │ │ ├── avatar1.jpg │ │ │ ├── avatar2.jpg │ │ │ └── avatar3.jpg │ │ ├── banners │ │ │ ├── 1.jpg │ │ │ └── cover.jpg │ │ ├── favicon.ico │ │ ├── icons │ │ │ ├── flag-in.png │ │ │ ├── flag-kr.png │ │ │ ├── flag-tr.png │ │ │ ├── flag-usa.png │ │ │ ├── flag-vt.png │ │ │ ├── pay-american-ex.png │ │ │ ├── pay-bank.png │ │ │ ├── pay-mastercard.png │ │ │ ├── pay-visa-el.png │ │ │ ├── pay-visa.png │ │ │ ├── stars-active.svg │ │ │ └── starts-disable.svg │ │ ├── items │ │ │ ├── .DS_Store │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12-1.jpg │ │ │ ├── 12-2.jpg │ │ │ ├── 12.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── logo.png │ │ └── misc │ │ │ ├── appstore.png │ │ │ ├── btn-paypal.png │ │ │ ├── cash.jpg │ │ │ ├── map.jpg │ │ │ ├── payment-bank.png │ │ │ ├── payment-card.png │ │ │ ├── payment-paypal.png │ │ │ ├── payments.png │ │ │ └── playmarket.png │ └── js │ │ ├── .DS_Store │ │ ├── bootstrap.bundle.min.js │ │ ├── jquery-2.0.0.min.js │ │ ├── jquery-3.3.1.min.js │ │ └── script.js ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── media ├── default │ └── default-user.png ├── greatkart-screenshot.jpg ├── photos │ ├── categories │ │ ├── jackets.jpg │ │ ├── jeans.jpg │ │ ├── shirts.jpg │ │ ├── shoes.png │ │ └── tshirts.jpg │ └── products │ │ ├── ATX-Jeans.jpg │ │ ├── Blue-Shirt.jpg │ │ ├── Great-Tshirt.jpg │ │ ├── Mavi_jeans.jpg │ │ ├── Puma-Ferrari-Shoes.jpg │ │ ├── US-Polo-Assn_Jacket.jpg │ │ ├── Wrangler-Shirt.jpg │ │ └── jordan-true-flight-basketball-shoes.jpg ├── store │ └── products │ │ ├── Profile-Pic-Demo.png │ │ ├── image1.jpg │ │ ├── image13.jpg │ │ ├── image2.jpg │ │ └── wrangler-indigo-t-shirt.jpg └── userprofile │ ├── Profile-Pic-Demo.png │ ├── Profile-Pic-Demo_NgbgEt0.png │ ├── Profile-Pic-Demo_eifH74A.png │ ├── Profile-Pic-Demo_vhx57HL.png │ ├── default-user.png │ └── rathan-photo.jpg ├── orders ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20210313_0211.py │ ├── 0003_auto_20210313_0218.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── static ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── nav_sidebar.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── nav_sidebar.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── prepopulate_init.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE.md │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js ├── css │ ├── bootstrap.css │ ├── custom.css │ ├── responsive.css │ ├── responsive.css.map │ ├── ui.css │ └── ui.css.map ├── fonts │ ├── feathericons │ │ ├── css │ │ │ └── iconfont.css │ │ ├── feather.jpg │ │ ├── fonts │ │ │ ├── feather.eot │ │ │ ├── feather.svg │ │ │ ├── feather.ttf │ │ │ └── feather.woff │ │ ├── icons │ │ │ ├── activity.svg │ │ │ ├── airplay.svg │ │ │ ├── alert-circle.svg │ │ │ ├── alert-octagon.svg │ │ │ ├── alert-triangle.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── anchor.svg │ │ │ ├── aperture.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-down-circle.svg │ │ │ ├── arrow-down-left.svg │ │ │ ├── arrow-down-right.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-circle.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right-circle.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up-circle.svg │ │ │ ├── arrow-up-left.svg │ │ │ ├── arrow-up-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── at-sign.svg │ │ │ ├── award.svg │ │ │ ├── bar-chart-2.svg │ │ │ ├── bar-chart-line-2.svg │ │ │ ├── bar-chart-line.svg │ │ │ ├── bar-chart.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery.svg │ │ │ ├── bell-off.svg │ │ │ ├── bell.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bold.svg │ │ │ ├── book-open.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── box.svg │ │ │ ├── briefcase.svg │ │ │ ├── calendar.svg │ │ │ ├── camera-off.svg │ │ │ ├── camera.svg │ │ │ ├── cast.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── chevrons-down.svg │ │ │ ├── chevrons-left.svg │ │ │ ├── chevrons-right.svg │ │ │ ├── chevrons-up.svg │ │ │ ├── chrome.svg │ │ │ ├── circle.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-lightning.svg │ │ │ ├── cloud-off.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud.svg │ │ │ ├── code.svg │ │ │ ├── codepen.svg │ │ │ ├── command.svg │ │ │ ├── compass.svg │ │ │ ├── copy.svg │ │ │ ├── corner-down-left.svg │ │ │ ├── corner-down-right.svg │ │ │ ├── corner-left-down.svg │ │ │ ├── corner-left-up.svg │ │ │ ├── corner-right-down.svg │ │ │ ├── corner-right-up.svg │ │ │ ├── corner-up-left.svg │ │ │ ├── corner-up-right.svg │ │ │ ├── cpu.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop.svg │ │ │ ├── crosshair.svg │ │ │ ├── database.svg │ │ │ ├── delete.svg │ │ │ ├── disc.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── download-cloud.svg │ │ │ ├── download.svg │ │ │ ├── droplet.svg │ │ │ ├── edit-2.svg │ │ │ ├── edit-3.svg │ │ │ ├── edit.svg │ │ │ ├── external-link.svg │ │ │ ├── eye-off.svg │ │ │ ├── eye.svg │ │ │ ├── facebook.svg │ │ │ ├── fast-forward.svg │ │ │ ├── feather.svg │ │ │ ├── file-minus.svg │ │ │ ├── file-plus.svg │ │ │ ├── file-text.svg │ │ │ ├── file.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── flag.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder.svg │ │ │ ├── gift.svg │ │ │ ├── git-branch.svg │ │ │ ├── git-commit.svg │ │ │ ├── git-merge.svg │ │ │ ├── git-pull-request.svg │ │ │ ├── github.svg │ │ │ ├── gitlab.svg │ │ │ ├── globe.svg │ │ │ ├── grid.svg │ │ │ ├── hard-drive.svg │ │ │ ├── hash.svg │ │ │ ├── headphones.svg │ │ │ ├── heart-on.svg │ │ │ ├── heart.svg │ │ │ ├── help-circle.svg │ │ │ ├── home.svg │ │ │ ├── image.svg │ │ │ ├── inbox.svg │ │ │ ├── info.svg │ │ │ ├── instagram.svg │ │ │ ├── italic.svg │ │ │ ├── layers.svg │ │ │ ├── layout.svg │ │ │ ├── life-buoy.svg │ │ │ ├── link-2.svg │ │ │ ├── link.svg │ │ │ ├── linkedin.svg │ │ │ ├── list.svg │ │ │ ├── loader.svg │ │ │ ├── lock.svg │ │ │ ├── log-in.svg │ │ │ ├── log-out.svg │ │ │ ├── mail.svg │ │ │ ├── map-pin.svg │ │ │ ├── map.svg │ │ │ ├── maximize-2.svg │ │ │ ├── maximize.svg │ │ │ ├── menu.svg │ │ │ ├── message-circle.svg │ │ │ ├── message-square.svg │ │ │ ├── mic-off.svg │ │ │ ├── mic.svg │ │ │ ├── minimize-2.svg │ │ │ ├── minimize.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── monitor.svg │ │ │ ├── moon.svg │ │ │ ├── more-horizontal-2.svg │ │ │ ├── more-horizontal.svg │ │ │ ├── more-vertical-2.svg │ │ │ ├── more-vertical.svg │ │ │ ├── move.svg │ │ │ ├── music.svg │ │ │ ├── navigation-2.svg │ │ │ ├── navigation.svg │ │ │ ├── octagon.svg │ │ │ ├── package.svg │ │ │ ├── paperclip.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── percent.svg │ │ │ ├── phone-call.svg │ │ │ ├── phone-forwarded.svg │ │ │ ├── phone-incoming.svg │ │ │ ├── phone-missed.svg │ │ │ ├── phone-off.svg │ │ │ ├── phone-outgoing.svg │ │ │ ├── phone.svg │ │ │ ├── pie-chart.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── pocket.svg │ │ │ ├── power.svg │ │ │ ├── printer.svg │ │ │ ├── radio.svg │ │ │ ├── refresh-ccw.svg │ │ │ ├── refresh-cw.svg │ │ │ ├── repeat.svg │ │ │ ├── rewind.svg │ │ │ ├── rotate-ccw.svg │ │ │ ├── rotate-cw.svg │ │ │ ├── rss.svg │ │ │ ├── save.svg │ │ │ ├── scissors.svg │ │ │ ├── search.svg │ │ │ ├── send.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── share-2.svg │ │ │ ├── share.svg │ │ │ ├── shield-off.svg │ │ │ ├── shield.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shuffle.svg │ │ │ ├── sidebar.svg │ │ │ ├── skip-back.svg │ │ │ ├── skip-forward.svg │ │ │ ├── slack.svg │ │ │ ├── slash.svg │ │ │ ├── sliders.svg │ │ │ ├── smartphone.svg │ │ │ ├── speaker.svg │ │ │ ├── square.svg │ │ │ ├── star-on.svg │ │ │ ├── star.svg │ │ │ ├── stop-circle.svg │ │ │ ├── sun.svg │ │ │ ├── sunrise.svg │ │ │ ├── sunset.svg │ │ │ ├── tablet.svg │ │ │ ├── tag.svg │ │ │ ├── target.svg │ │ │ ├── terminal.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── toggle-left.svg │ │ │ ├── toggle-right.svg │ │ │ ├── trash-2.svg │ │ │ ├── trash.svg │ │ │ ├── trending-down.svg │ │ │ ├── trending-up.svg │ │ │ ├── triangle.svg │ │ │ ├── truck.svg │ │ │ ├── tv.svg │ │ │ ├── twitter.svg │ │ │ ├── type.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── unlock.svg │ │ │ ├── upload-cloud.svg │ │ │ ├── upload.svg │ │ │ ├── user-check.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-x.svg │ │ │ ├── user.svg │ │ │ ├── users.svg │ │ │ ├── video-off.svg │ │ │ ├── video.svg │ │ │ ├── voicemail.svg │ │ │ ├── volume-1.svg │ │ │ ├── volume-2.svg │ │ │ ├── volume-x.svg │ │ │ ├── volume.svg │ │ │ ├── watch.svg │ │ │ ├── wifi-off.svg │ │ │ ├── wifi.svg │ │ │ ├── wind.svg │ │ │ ├── x-circle.svg │ │ │ ├── x-square.svg │ │ │ ├── x.svg │ │ │ ├── youtube.svg │ │ │ ├── zap-off.svg │ │ │ ├── zap.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ ├── index.css │ │ └── preview.html │ ├── fontawesome │ │ ├── css │ │ │ ├── all.css │ │ │ └── all.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ ├── material-icons │ │ ├── css │ │ │ ├── materialdesignicons.css │ │ │ └── materialdesignicons.css.map │ │ ├── fonts │ │ │ ├── materialdesignicons-webfont.eot │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ ├── materialdesignicons-webfont.woff │ │ │ └── materialdesignicons-webfont.woff2 │ │ ├── license.md │ │ ├── preview.html │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _core.scss │ │ │ ├── _extras.scss │ │ │ ├── _functions.scss │ │ │ ├── _icons.scss │ │ │ ├── _path.scss │ │ │ ├── _variables.scss │ │ │ └── materialdesignicons.scss │ └── roboto │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ ├── font-min.css │ │ └── font.css ├── images │ ├── avatars │ │ ├── avatar1.jpg │ │ ├── avatar2.jpg │ │ └── avatar3.jpg │ ├── banners │ │ ├── 1.jpg │ │ └── cover.jpg │ ├── favicon.ico │ ├── icons │ │ ├── flag-in.png │ │ ├── flag-kr.png │ │ ├── flag-tr.png │ │ ├── flag-usa.png │ │ ├── flag-vt.png │ │ ├── pay-american-ex.png │ │ ├── pay-bank.png │ │ ├── pay-mastercard.png │ │ ├── pay-visa-el.png │ │ ├── pay-visa.png │ │ ├── stars-active.svg │ │ └── starts-disable.svg │ ├── items │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12-1.jpg │ │ ├── 12-2.jpg │ │ ├── 12.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── logo.png │ └── misc │ │ ├── appstore.png │ │ ├── btn-paypal.png │ │ ├── cash.jpg │ │ ├── map.jpg │ │ ├── payment-bank.png │ │ ├── payment-card.png │ │ ├── payment-paypal.png │ │ ├── payments.png │ │ └── playmarket.png └── js │ ├── bootstrap.bundle.min.js │ ├── jquery-2.0.0.min.js │ ├── jquery-3.3.1.min.js │ └── script.js ├── store ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_variation.py │ ├── 0003_reviewrating.py │ ├── 0004_productgallery.py │ ├── 0005_auto_20210321_0717.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py └── templates ├── accounts ├── account_verification_email.html ├── change_password.html ├── dashboard.html ├── edit_profile.html ├── forgotPassword.html ├── login.html ├── my_orders.html ├── order_detail.html ├── register.html ├── resetPassword.html └── reset_password_email.html ├── base.html ├── home.html ├── includes ├── alerts.html ├── dashboard_sidebar.html ├── footer.html └── navbar.html ├── orders ├── order_complete.html ├── order_recieved_email.html └── payments.html └── store ├── cart.html ├── checkout.html ├── product_detail.html └── store.html /.env-sample: -------------------------------------------------------------------------------- 1 | SECRET_KEY= 2 | DEBUG= 3 | EMAIL_HOST= 4 | EMAIL_PORT= 5 | EMAIL_HOST_USER= 6 | EMAIL_HOST_PASSWORD= 7 | EMAIL_USE_TLS= 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-vendored 2 | *.py linguist-vendored=false 3 | -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/accounts/__init__.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AccountsConfig(AppConfig): 5 | name = 'accounts' 6 | -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/accounts/migrations/__init__.py -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /carts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/carts/__init__.py -------------------------------------------------------------------------------- /carts/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CartsConfig(AppConfig): 5 | name = 'carts' 6 | -------------------------------------------------------------------------------- /carts/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/carts/migrations/__init__.py -------------------------------------------------------------------------------- /carts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /category/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/category/__init__.py -------------------------------------------------------------------------------- /category/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Category 3 | 4 | # Register your models here. 5 | 6 | class CategoryAdmin(admin.ModelAdmin): 7 | prepopulated_fields = {'slug': ('category_name',)} 8 | list_display = ('category_name', 'slug') 9 | 10 | admin.site.register(Category, CategoryAdmin) 11 | -------------------------------------------------------------------------------- /category/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CategoryConfig(AppConfig): 5 | name = 'category' 6 | -------------------------------------------------------------------------------- /category/context_processors.py: -------------------------------------------------------------------------------- 1 | from .models import Category 2 | 3 | def menu_links(request): 4 | links = Category.objects.all() 5 | return dict(links=links) 6 | -------------------------------------------------------------------------------- /category/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/category/migrations/__init__.py -------------------------------------------------------------------------------- /category/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /category/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /greatkart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/__init__.py -------------------------------------------------------------------------------- /greatkart/static/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/css/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/feathericons/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/feather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/feathericons/feather.jpg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/fonts/feather.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/feathericons/fonts/feather.eot -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/fonts/feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/feathericons/fonts/feather.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/fonts/feather.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/feathericons/fonts/feather.woff -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/activity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/airplay.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/alert-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/anchor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/at-sign.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/award.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/battery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bell-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bell.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bluetooth.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bold.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/book.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/briefcase.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/camera-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/camera.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/check-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/check-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/chevron-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/chevron-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/chevrons-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/chevrons-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/chevrons-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/chevrons-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/clipboard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/cloud-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/corner-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/corner-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/corner-left-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/corner-left-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/corner-right-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/corner-right-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/corner-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/corner-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/crop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/disc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/download-cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/droplet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/edit-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/edit-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/edit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/external-link.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/eye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/fast-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/feather.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/hash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/headphones.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/image.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/inbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/instagram.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/layers.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/layout.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/mail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/map-pin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/map.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/maximize-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/message-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/minimize-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/minus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/minus-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/monitor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/moon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/more-horizontal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/more-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/music.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/navigation-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/navigation.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/octagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/paperclip.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/pie-chart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/play-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/plus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/plus-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/pocket.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/power.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/printer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/radio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/refresh-ccw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/refresh-cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/rewind.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/rotate-ccw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/rotate-cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/shield.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/skip-back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/skip-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/stop-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/tag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/target.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/thermometer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/thumbs-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/thumbs-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/toggle-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/toggle-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/trash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/umbrella.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/underline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/unlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/user.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/video-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/volume.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/wind.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/x-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/x-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/zap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/zoom-in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/css/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/material-icons/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/material-icons/css/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/material-icons/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/material-icons/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/material-icons/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/material-icons/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/scss/_icons.scss: -------------------------------------------------------------------------------- 1 | @each $key, $value in $mdi-icons { 2 | .#{$mdi-css-prefix}-#{$key}::before { 3 | content: char($value); 4 | } 5 | } 6 | 7 | .#{$mdi-css-prefix}-blank::before { 8 | content: "\F68C"; 9 | visibility: hidden; 10 | } -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/scss/materialdesignicons.scss: -------------------------------------------------------------------------------- 1 | /* MaterialDesignIcons.com */ 2 | @import "variables"; 3 | @import "functions"; 4 | @import "path"; 5 | @import "core"; 6 | @import "icons"; 7 | @import "extras"; 8 | @import "animated"; -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/font-min.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:"Roboto";src:url(Roboto-Thin.ttf);font-weight:200}@font-face{font-family:"Roboto";src:url(Roboto-Light.ttf);font-weight:300}@font-face{font-family:"Roboto";src:url(Roboto-Regular.ttf);font-weight:400}@font-face{font-family:"Roboto";src:url(Roboto-Medium.ttf);font-weight:500}@font-face{font-family:"Roboto";src:url(Roboto-Bold.ttf);font-weight:700} 2 | -------------------------------------------------------------------------------- /greatkart/static/images/avatars/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/avatars/avatar1.jpg -------------------------------------------------------------------------------- /greatkart/static/images/avatars/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/avatars/avatar2.jpg -------------------------------------------------------------------------------- /greatkart/static/images/avatars/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/avatars/avatar3.jpg -------------------------------------------------------------------------------- /greatkart/static/images/banners/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/banners/1.jpg -------------------------------------------------------------------------------- /greatkart/static/images/banners/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/banners/cover.jpg -------------------------------------------------------------------------------- /greatkart/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/favicon.ico -------------------------------------------------------------------------------- /greatkart/static/images/icons/flag-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/icons/flag-in.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/flag-kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/icons/flag-kr.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/flag-tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/icons/flag-tr.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/flag-usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/icons/flag-usa.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/flag-vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/icons/flag-vt.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/pay-american-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/icons/pay-american-ex.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/pay-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/icons/pay-bank.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/pay-mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/icons/pay-mastercard.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/pay-visa-el.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/icons/pay-visa-el.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/pay-visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/icons/pay-visa.png -------------------------------------------------------------------------------- /greatkart/static/images/items/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/images/items/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/1.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/10.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/11.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/12-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/12-1.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/12-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/12-2.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/12.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/2.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/3.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/4.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/5.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/6.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/7.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/8.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/items/9.jpg -------------------------------------------------------------------------------- /greatkart/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/logo.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/misc/appstore.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/btn-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/misc/btn-paypal.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/cash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/misc/cash.jpg -------------------------------------------------------------------------------- /greatkart/static/images/misc/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/misc/map.jpg -------------------------------------------------------------------------------- /greatkart/static/images/misc/payment-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/misc/payment-bank.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/payment-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/misc/payment-card.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/payment-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/misc/payment-paypal.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/payments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/misc/payments.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/playmarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/images/misc/playmarket.png -------------------------------------------------------------------------------- /greatkart/static/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/greatkart/static/js/.DS_Store -------------------------------------------------------------------------------- /media/default/default-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/default/default-user.png -------------------------------------------------------------------------------- /media/greatkart-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/greatkart-screenshot.jpg -------------------------------------------------------------------------------- /media/photos/categories/jackets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/categories/jackets.jpg -------------------------------------------------------------------------------- /media/photos/categories/jeans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/categories/jeans.jpg -------------------------------------------------------------------------------- /media/photos/categories/shirts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/categories/shirts.jpg -------------------------------------------------------------------------------- /media/photos/categories/shoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/categories/shoes.png -------------------------------------------------------------------------------- /media/photos/categories/tshirts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/categories/tshirts.jpg -------------------------------------------------------------------------------- /media/photos/products/ATX-Jeans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/products/ATX-Jeans.jpg -------------------------------------------------------------------------------- /media/photos/products/Blue-Shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/products/Blue-Shirt.jpg -------------------------------------------------------------------------------- /media/photos/products/Great-Tshirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/products/Great-Tshirt.jpg -------------------------------------------------------------------------------- /media/photos/products/Mavi_jeans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/products/Mavi_jeans.jpg -------------------------------------------------------------------------------- /media/photos/products/Puma-Ferrari-Shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/products/Puma-Ferrari-Shoes.jpg -------------------------------------------------------------------------------- /media/photos/products/US-Polo-Assn_Jacket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/products/US-Polo-Assn_Jacket.jpg -------------------------------------------------------------------------------- /media/photos/products/Wrangler-Shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/products/Wrangler-Shirt.jpg -------------------------------------------------------------------------------- /media/photos/products/jordan-true-flight-basketball-shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/photos/products/jordan-true-flight-basketball-shoes.jpg -------------------------------------------------------------------------------- /media/store/products/Profile-Pic-Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/store/products/Profile-Pic-Demo.png -------------------------------------------------------------------------------- /media/store/products/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/store/products/image1.jpg -------------------------------------------------------------------------------- /media/store/products/image13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/store/products/image13.jpg -------------------------------------------------------------------------------- /media/store/products/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/store/products/image2.jpg -------------------------------------------------------------------------------- /media/store/products/wrangler-indigo-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/store/products/wrangler-indigo-t-shirt.jpg -------------------------------------------------------------------------------- /media/userprofile/Profile-Pic-Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/userprofile/Profile-Pic-Demo.png -------------------------------------------------------------------------------- /media/userprofile/Profile-Pic-Demo_NgbgEt0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/userprofile/Profile-Pic-Demo_NgbgEt0.png -------------------------------------------------------------------------------- /media/userprofile/Profile-Pic-Demo_eifH74A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/userprofile/Profile-Pic-Demo_eifH74A.png -------------------------------------------------------------------------------- /media/userprofile/Profile-Pic-Demo_vhx57HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/userprofile/Profile-Pic-Demo_vhx57HL.png -------------------------------------------------------------------------------- /media/userprofile/default-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/userprofile/default-user.png -------------------------------------------------------------------------------- /media/userprofile/rathan-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/media/userprofile/rathan-photo.jpg -------------------------------------------------------------------------------- /orders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/orders/__init__.py -------------------------------------------------------------------------------- /orders/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class OrdersConfig(AppConfig): 5 | name = 'orders' 6 | -------------------------------------------------------------------------------- /orders/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import Order 3 | 4 | 5 | class OrderForm(forms.ModelForm): 6 | class Meta: 7 | model = Order 8 | fields = ['first_name', 'last_name', 'phone', 'email', 'address_line_1', 'address_line_2', 'country', 'state', 'city', 'order_note'] 9 | -------------------------------------------------------------------------------- /orders/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/orders/migrations/__init__.py -------------------------------------------------------------------------------- /orders/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /orders/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('place_order/', views.place_order, name='place_order'), 6 | path('payments/', views.payments, name='payments'), 7 | path('order_complete/', views.order_complete, name='order_complete'), 8 | ] 9 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | asgiref==3.2.10 2 | certifi==2020.12.5 3 | chardet==4.0.0 4 | Django==3.1 5 | django-admin-honeypot==1.1.0 6 | django-admin-thumbnails==0.2.5 7 | django-session-timeout==0.1.0 8 | idna==2.10 9 | Pillow==7.2.0 10 | python-decouple==3.4 11 | pytz==2020.1 12 | requests==2.25.1 13 | six==1.15.0 14 | sqlparse==0.3.1 15 | urllib3==1.26.3 16 | -------------------------------------------------------------------------------- /static/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | WOFF files extracted using https://github.com/majodev/google-webfonts-helper 3 | Weights used in this project: Light (300), Regular (400), Bold (700) 4 | -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /static/admin/img/README.txt: -------------------------------------------------------------------------------- 1 | All icons are taken from Font Awesome (http://fontawesome.io/) project. 2 | The Font Awesome font is licensed under the SIL OFL 1.1: 3 | - https://scripts.sil.org/OFL 4 | 5 | SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG 6 | Font-Awesome-SVG-PNG is licensed under the MIT license (see file license 7 | in current folder). 8 | -------------------------------------------------------------------------------- /static/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | /*global jQuery:false*/ 2 | 'use strict'; 3 | /* Puts the included jQuery into our own namespace using noConflict and passing 4 | * it 'true'. This ensures that the included jQuery doesn't pollute the global 5 | * namespace (i.e. this preserves pre-existing values for both window.$ and 6 | * window.jQuery). 7 | */ 8 | window.django = {jQuery: jQuery.noConflict(true)}; 9 | -------------------------------------------------------------------------------- /static/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- 1 | 'use strict';{const b=django.jQuery;b.fn.prepopulate=function(d,f,g){return this.each(function(){const a=b(this),h=function(){if(!a.data("_changed")){var e=[];b.each(d,function(a,c){c=b(c);0 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/airplay.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/alert-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/alert-octagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/anchor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/at-sign.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/award.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/battery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bell-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bell.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bluetooth.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bold.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/book.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/briefcase.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/calendar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/camera-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/camera.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/check-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/check-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevron-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevron-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevrons-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevrons-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevrons-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevrons-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/clipboard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/cloud-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/command.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-left-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-left-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-right-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-right-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/credit-card.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/crop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/disc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/download-cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/droplet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/edit-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/edit-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/edit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/external-link.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/eye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/fast-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/feather.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/globe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/hash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/headphones.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/image.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/inbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/instagram.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/layers.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/layout.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/mail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/map-pin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/map.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/maximize-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/message-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/minimize-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/minus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/minus-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/monitor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/moon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/more-horizontal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/more-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/music.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/navigation-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/navigation.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/octagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/paperclip.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/pie-chart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/play-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/plus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/plus-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/pocket.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/power.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/printer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/radio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/refresh-ccw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/refresh-cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/rewind.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/rotate-ccw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/rotate-cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/shield.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/sidebar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/skip-back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/skip-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/smartphone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/stop-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/tag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/target.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/thermometer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/thumbs-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/thumbs-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/toggle-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/toggle-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/trash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/trending-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/trending-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/umbrella.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/underline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/unlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/user.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/video-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/volume.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/wind.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/x-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/x-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/zap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/zoom-in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/fonts/material-icons/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/material-icons/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /static/fonts/material-icons/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/material-icons/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/material-icons/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/material-icons/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /static/fonts/material-icons/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/material-icons/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /static/fonts/material-icons/scss/_icons.scss: -------------------------------------------------------------------------------- 1 | @each $key, $value in $mdi-icons { 2 | .#{$mdi-css-prefix}-#{$key}::before { 3 | content: char($value); 4 | } 5 | } 6 | 7 | .#{$mdi-css-prefix}-blank::before { 8 | content: "\F68C"; 9 | visibility: hidden; 10 | } -------------------------------------------------------------------------------- /static/fonts/material-icons/scss/materialdesignicons.scss: -------------------------------------------------------------------------------- 1 | /* MaterialDesignIcons.com */ 2 | @import "variables"; 3 | @import "functions"; 4 | @import "path"; 5 | @import "core"; 6 | @import "icons"; 7 | @import "extras"; 8 | @import "animated"; -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/font-min.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:"Roboto";src:url(Roboto-Thin.ttf);font-weight:200}@font-face{font-family:"Roboto";src:url(Roboto-Light.ttf);font-weight:300}@font-face{font-family:"Roboto";src:url(Roboto-Regular.ttf);font-weight:400}@font-face{font-family:"Roboto";src:url(Roboto-Medium.ttf);font-weight:500}@font-face{font-family:"Roboto";src:url(Roboto-Bold.ttf);font-weight:700} 2 | -------------------------------------------------------------------------------- /static/images/avatars/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/avatars/avatar1.jpg -------------------------------------------------------------------------------- /static/images/avatars/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/avatars/avatar2.jpg -------------------------------------------------------------------------------- /static/images/avatars/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/avatars/avatar3.jpg -------------------------------------------------------------------------------- /static/images/banners/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/banners/1.jpg -------------------------------------------------------------------------------- /static/images/banners/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/banners/cover.jpg -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/icons/flag-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/icons/flag-in.png -------------------------------------------------------------------------------- /static/images/icons/flag-kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/icons/flag-kr.png -------------------------------------------------------------------------------- /static/images/icons/flag-tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/icons/flag-tr.png -------------------------------------------------------------------------------- /static/images/icons/flag-usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/icons/flag-usa.png -------------------------------------------------------------------------------- /static/images/icons/flag-vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/icons/flag-vt.png -------------------------------------------------------------------------------- /static/images/icons/pay-american-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/icons/pay-american-ex.png -------------------------------------------------------------------------------- /static/images/icons/pay-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/icons/pay-bank.png -------------------------------------------------------------------------------- /static/images/icons/pay-mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/icons/pay-mastercard.png -------------------------------------------------------------------------------- /static/images/icons/pay-visa-el.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/icons/pay-visa-el.png -------------------------------------------------------------------------------- /static/images/icons/pay-visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/icons/pay-visa.png -------------------------------------------------------------------------------- /static/images/items/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/1.jpg -------------------------------------------------------------------------------- /static/images/items/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/10.jpg -------------------------------------------------------------------------------- /static/images/items/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/11.jpg -------------------------------------------------------------------------------- /static/images/items/12-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/12-1.jpg -------------------------------------------------------------------------------- /static/images/items/12-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/12-2.jpg -------------------------------------------------------------------------------- /static/images/items/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/12.jpg -------------------------------------------------------------------------------- /static/images/items/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/2.jpg -------------------------------------------------------------------------------- /static/images/items/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/3.jpg -------------------------------------------------------------------------------- /static/images/items/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/4.jpg -------------------------------------------------------------------------------- /static/images/items/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/5.jpg -------------------------------------------------------------------------------- /static/images/items/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/6.jpg -------------------------------------------------------------------------------- /static/images/items/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/7.jpg -------------------------------------------------------------------------------- /static/images/items/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/8.jpg -------------------------------------------------------------------------------- /static/images/items/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/items/9.jpg -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/logo.png -------------------------------------------------------------------------------- /static/images/misc/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/misc/appstore.png -------------------------------------------------------------------------------- /static/images/misc/btn-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/misc/btn-paypal.png -------------------------------------------------------------------------------- /static/images/misc/cash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/misc/cash.jpg -------------------------------------------------------------------------------- /static/images/misc/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/misc/map.jpg -------------------------------------------------------------------------------- /static/images/misc/payment-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/misc/payment-bank.png -------------------------------------------------------------------------------- /static/images/misc/payment-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/misc/payment-card.png -------------------------------------------------------------------------------- /static/images/misc/payment-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/misc/payment-paypal.png -------------------------------------------------------------------------------- /static/images/misc/payments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/misc/payments.png -------------------------------------------------------------------------------- /static/images/misc/playmarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/static/images/misc/playmarket.png -------------------------------------------------------------------------------- /store/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/store/__init__.py -------------------------------------------------------------------------------- /store/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class StoreConfig(AppConfig): 5 | name = 'store' 6 | -------------------------------------------------------------------------------- /store/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import ReviewRating 3 | 4 | class ReviewForm(forms.ModelForm): 5 | class Meta: 6 | model = ReviewRating 7 | fields = ['subject', 'review', 'rating'] 8 | -------------------------------------------------------------------------------- /store/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-pre-deploy/66e6a99cdebce2ff1014b4f54af9f903f2ee3681/store/migrations/__init__.py -------------------------------------------------------------------------------- /store/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /templates/accounts/account_verification_email.html: -------------------------------------------------------------------------------- 1 | {% autoescape off %} 2 | 3 | Hi {{user.first_name}}, 4 | 5 | Please click on below link to confirm your registration. 6 | http://{{domain}}{% url 'activate' uidb64=uid token=token %} 7 | 8 | If you think it's not you, please ignore this email. 9 | 10 | {% endautoescape %} 11 | -------------------------------------------------------------------------------- /templates/accounts/reset_password_email.html: -------------------------------------------------------------------------------- 1 | {% autoescape off %} 2 | 3 | Hi {{user.first_name}}, 4 | 5 | As requested, please click below link to reset your password. 6 | http://{{domain}}{% url 'resetpassword_validate' uidb64=uid token=token %} 7 | 8 | If you think it's not you, please ignore this email. 9 | 10 | {% endautoescape %} 11 | -------------------------------------------------------------------------------- /templates/orders/order_recieved_email.html: -------------------------------------------------------------------------------- 1 | {% autoescape off %} 2 | 3 | Hi {{user.first_name}}, 4 | 5 | YOUR ORDER HAS BEEN RECIEVED 6 | 7 | Order Number: {{order.order_number}} 8 | 9 | {% endautoescape %} 10 | --------------------------------------------------------------------------------