├── .ebextensions ├── db-migrate.config └── django.config ├── .env-sample ├── .gitattributes ├── .gitignore ├── 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 ├── data.json ├── greatkart ├── __init__.py ├── asgi.py ├── media_storages.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 ├── 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 /.ebextensions/db-migrate.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/.ebextensions/db-migrate.config -------------------------------------------------------------------------------- /.ebextensions/django.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/.ebextensions/django.config -------------------------------------------------------------------------------- /.env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/.env-sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/.gitignore -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounts/migrations/0002_userprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/accounts/migrations/0002_userprofile.py -------------------------------------------------------------------------------- /accounts/migrations/0003_auto_20210322_0422.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/accounts/migrations/0003_auto_20210322_0422.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/accounts/views.py -------------------------------------------------------------------------------- /carts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/carts/admin.py -------------------------------------------------------------------------------- /carts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/carts/apps.py -------------------------------------------------------------------------------- /carts/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/carts/context_processors.py -------------------------------------------------------------------------------- /carts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/carts/migrations/0001_initial.py -------------------------------------------------------------------------------- /carts/migrations/0002_cartitem_variations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/carts/migrations/0002_cartitem_variations.py -------------------------------------------------------------------------------- /carts/migrations/0003_auto_20210308_1648.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/carts/migrations/0003_auto_20210308_1648.py -------------------------------------------------------------------------------- /carts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/carts/models.py -------------------------------------------------------------------------------- /carts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/carts/tests.py -------------------------------------------------------------------------------- /carts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/carts/urls.py -------------------------------------------------------------------------------- /carts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/carts/views.py -------------------------------------------------------------------------------- /category/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/category/admin.py -------------------------------------------------------------------------------- /category/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/category/apps.py -------------------------------------------------------------------------------- /category/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/category/context_processors.py -------------------------------------------------------------------------------- /category/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/category/migrations/0001_initial.py -------------------------------------------------------------------------------- /category/migrations/0002_auto_20201006_0125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/category/migrations/0002_auto_20201006_0125.py -------------------------------------------------------------------------------- /category/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/category/models.py -------------------------------------------------------------------------------- /category/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/category/tests.py -------------------------------------------------------------------------------- /category/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/data.json -------------------------------------------------------------------------------- /greatkart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /greatkart/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/asgi.py -------------------------------------------------------------------------------- /greatkart/media_storages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/media_storages.py -------------------------------------------------------------------------------- /greatkart/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/settings.py -------------------------------------------------------------------------------- /greatkart/static/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/css/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/css/bootstrap.css -------------------------------------------------------------------------------- /greatkart/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/css/custom.css -------------------------------------------------------------------------------- /greatkart/static/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/css/responsive.css -------------------------------------------------------------------------------- /greatkart/static/css/responsive.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/css/responsive.css.map -------------------------------------------------------------------------------- /greatkart/static/css/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/css/ui.css -------------------------------------------------------------------------------- /greatkart/static/css/ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/css/ui.css.map -------------------------------------------------------------------------------- /greatkart/static/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/css/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/css/iconfont.css -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/feather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/feather.jpg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/fonts/feather.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/fonts/feather.eot -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/fonts/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/fonts/feather.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/fonts/feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/fonts/feather.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/fonts/feather.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/fonts/feather.woff -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/activity.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/airplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/airplay.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/anchor.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/aperture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/aperture.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/archive.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/arrow-up.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/at-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/at-sign.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/award.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/award.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bar-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/bar-chart.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/battery.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bell-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/bell-off.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/bell.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/bluetooth.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/bold.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/book-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/book-open.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/book.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/bookmark.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/box.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/briefcase.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/calendar.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/camera.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/cast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/cast.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/check.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/chrome.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/circle.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/clock.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/cloud.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/code.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/copy.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/cpu.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/crop.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/delete.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/disc.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/edit-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/edit-2.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/edit-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/edit-3.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/edit.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/eye.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/file.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/film.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/filter.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/flag.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/folder.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/gift.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/github.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/gitlab.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/globe.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/grid.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/hash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/hash.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/heart.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/home.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/image.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/inbox.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/info.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/italic.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/layers.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/layout.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/link-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/link-2.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/link.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/list.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/loader.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/lock.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/log-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/log-in.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/mail.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/map.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/menu.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/mic.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/minus.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/moon.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/move.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/music.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/pause.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/phone.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/play.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/plus.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/pocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/pocket.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/power.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/radio.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/repeat.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/rewind.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/rss.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/save.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/search.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/send.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/server.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/share.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/shield.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/slack.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/slash.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/square.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/star.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/sun.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/sunset.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/tablet.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/tag.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/target.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/trash.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/truck.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/tv.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/type.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/unlock.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/upload.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/user-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/user-x.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/user.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/users.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/video.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/volume.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/watch.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/wifi.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/wind.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/x.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/icons/zap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/icons/zap.svg -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/index.css -------------------------------------------------------------------------------- /greatkart/static/fonts/feathericons/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/feathericons/preview.html -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/fontawesome/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/fontawesome/css/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/fontawesome/css/all.css -------------------------------------------------------------------------------- /greatkart/static/fonts/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/material-icons/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/material-icons/css/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/material-icons/license.md -------------------------------------------------------------------------------- /greatkart/static/fonts/material-icons/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/material-icons/preview.html -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/font-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/roboto/font-min.css -------------------------------------------------------------------------------- /greatkart/static/fonts/roboto/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/fonts/roboto/font.css -------------------------------------------------------------------------------- /greatkart/static/images/avatars/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/avatars/avatar1.jpg -------------------------------------------------------------------------------- /greatkart/static/images/avatars/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/avatars/avatar2.jpg -------------------------------------------------------------------------------- /greatkart/static/images/avatars/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/avatars/avatar3.jpg -------------------------------------------------------------------------------- /greatkart/static/images/banners/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/banners/1.jpg -------------------------------------------------------------------------------- /greatkart/static/images/banners/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/banners/cover.jpg -------------------------------------------------------------------------------- /greatkart/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/favicon.ico -------------------------------------------------------------------------------- /greatkart/static/images/icons/flag-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/flag-in.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/flag-kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/flag-kr.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/flag-tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/flag-tr.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/flag-usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/flag-usa.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/flag-vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/flag-vt.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/pay-american-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/pay-american-ex.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/pay-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/pay-bank.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/pay-mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/pay-mastercard.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/pay-visa-el.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/pay-visa-el.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/pay-visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/pay-visa.png -------------------------------------------------------------------------------- /greatkart/static/images/icons/stars-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/stars-active.svg -------------------------------------------------------------------------------- /greatkart/static/images/icons/starts-disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/icons/starts-disable.svg -------------------------------------------------------------------------------- /greatkart/static/images/items/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/images/items/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/1.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/10.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/11.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/12-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/12-1.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/12-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/12-2.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/12.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/2.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/3.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/4.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/5.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/6.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/7.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/8.jpg -------------------------------------------------------------------------------- /greatkart/static/images/items/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/items/9.jpg -------------------------------------------------------------------------------- /greatkart/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/logo.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/misc/appstore.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/btn-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/misc/btn-paypal.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/cash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/misc/cash.jpg -------------------------------------------------------------------------------- /greatkart/static/images/misc/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/misc/map.jpg -------------------------------------------------------------------------------- /greatkart/static/images/misc/payment-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/misc/payment-bank.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/payment-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/misc/payment-card.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/payment-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/misc/payment-paypal.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/payments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/misc/payments.png -------------------------------------------------------------------------------- /greatkart/static/images/misc/playmarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/images/misc/playmarket.png -------------------------------------------------------------------------------- /greatkart/static/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/js/.DS_Store -------------------------------------------------------------------------------- /greatkart/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /greatkart/static/js/jquery-2.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/js/jquery-2.0.0.min.js -------------------------------------------------------------------------------- /greatkart/static/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /greatkart/static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/static/js/script.js -------------------------------------------------------------------------------- /greatkart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/urls.py -------------------------------------------------------------------------------- /greatkart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/views.py -------------------------------------------------------------------------------- /greatkart/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/greatkart/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/manage.py -------------------------------------------------------------------------------- /orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/orders/admin.py -------------------------------------------------------------------------------- /orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/orders/apps.py -------------------------------------------------------------------------------- /orders/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/orders/forms.py -------------------------------------------------------------------------------- /orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /orders/migrations/0002_auto_20210313_0211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/orders/migrations/0002_auto_20210313_0211.py -------------------------------------------------------------------------------- /orders/migrations/0003_auto_20210313_0218.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/orders/migrations/0003_auto_20210313_0218.py -------------------------------------------------------------------------------- /orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/orders/models.py -------------------------------------------------------------------------------- /orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/orders/tests.py -------------------------------------------------------------------------------- /orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/orders/urls.py -------------------------------------------------------------------------------- /orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/orders/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/admin/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/autocomplete.css -------------------------------------------------------------------------------- /static/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/base.css -------------------------------------------------------------------------------- /static/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/changelists.css -------------------------------------------------------------------------------- /static/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/dashboard.css -------------------------------------------------------------------------------- /static/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/fonts.css -------------------------------------------------------------------------------- /static/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/forms.css -------------------------------------------------------------------------------- /static/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/login.css -------------------------------------------------------------------------------- /static/admin/css/nav_sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/nav_sidebar.css -------------------------------------------------------------------------------- /static/admin/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/responsive.css -------------------------------------------------------------------------------- /static/admin/css/responsive_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/responsive_rtl.css -------------------------------------------------------------------------------- /static/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/rtl.css -------------------------------------------------------------------------------- /static/admin/css/vendor/select2/LICENSE-SELECT2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/vendor/select2/LICENSE-SELECT2.md -------------------------------------------------------------------------------- /static/admin/css/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/vendor/select2/select2.css -------------------------------------------------------------------------------- /static/admin/css/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /static/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/css/widgets.css -------------------------------------------------------------------------------- /static/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /static/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/fonts/README.txt -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /static/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/LICENSE -------------------------------------------------------------------------------- /static/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/README.txt -------------------------------------------------------------------------------- /static/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /static/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /static/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /static/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /static/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /static/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /static/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-no.svg -------------------------------------------------------------------------------- /static/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /static/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /static/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-viewlink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /static/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /static/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/search.svg -------------------------------------------------------------------------------- /static/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /static/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /static/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /static/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /static/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/SelectBox.js -------------------------------------------------------------------------------- /static/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /static/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/actions.js -------------------------------------------------------------------------------- /static/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/actions.min.js -------------------------------------------------------------------------------- /static/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /static/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /static/admin/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/autocomplete.js -------------------------------------------------------------------------------- /static/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/calendar.js -------------------------------------------------------------------------------- /static/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/cancel.js -------------------------------------------------------------------------------- /static/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/change_form.js -------------------------------------------------------------------------------- /static/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/collapse.js -------------------------------------------------------------------------------- /static/admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/collapse.min.js -------------------------------------------------------------------------------- /static/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/core.js -------------------------------------------------------------------------------- /static/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/inlines.js -------------------------------------------------------------------------------- /static/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/inlines.min.js -------------------------------------------------------------------------------- /static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/jquery.init.js -------------------------------------------------------------------------------- /static/admin/js/nav_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/nav_sidebar.js -------------------------------------------------------------------------------- /static/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/popup_response.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/prepopulate.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /static/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/urlify.js -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/jquery/LICENSE.txt -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/LICENSE.md -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/af.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/ar.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/az.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/bg.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/bn.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/bs.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/ca.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/cs.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/da.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/de.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/dsb.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/el.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/en.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/es.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/et.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/eu.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/fa.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/fi.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/fr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/gl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/he.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/hi.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/hr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/hsb.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/hu.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/hy.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/id.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/is.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/it.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/ja.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/ka.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/km.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/ko.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/lt.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/lv.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/mk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/ms.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/nb.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/ne.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/nl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/pl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/ps.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/pt.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/ro.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/ru.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/sk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/sl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/sq.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/sr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/sv.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/th.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/tk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/tr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/uk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/vi.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/select2.full.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/select2/select2.full.min.js -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/xregexp/LICENSE.txt -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/css/custom.css -------------------------------------------------------------------------------- /static/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/css/responsive.css -------------------------------------------------------------------------------- /static/css/responsive.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/css/responsive.css.map -------------------------------------------------------------------------------- /static/css/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/css/ui.css -------------------------------------------------------------------------------- /static/css/ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/css/ui.css.map -------------------------------------------------------------------------------- /static/fonts/feathericons/css/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/css/iconfont.css -------------------------------------------------------------------------------- /static/fonts/feathericons/feather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/feather.jpg -------------------------------------------------------------------------------- /static/fonts/feathericons/fonts/feather.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/fonts/feather.eot -------------------------------------------------------------------------------- /static/fonts/feathericons/fonts/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/fonts/feather.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/fonts/feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/fonts/feather.ttf -------------------------------------------------------------------------------- /static/fonts/feathericons/fonts/feather.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/fonts/feather.woff -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/activity.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/airplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/airplay.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/alert-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/alert-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/alert-octagon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/alert-octagon.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/alert-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/alert-triangle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/align-center.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/align-justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/align-justify.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/align-left.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/align-right.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/anchor.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/aperture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/aperture.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/archive.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-down-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/arrow-down-left.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-down-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/arrow-down-right.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/arrow-down.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/arrow-left.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/arrow-right.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-up-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/arrow-up-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-up-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/arrow-up-left.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-up-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/arrow-up-right.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/arrow-up.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/at-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/at-sign.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/award.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/award.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bar-chart-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/bar-chart-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bar-chart-line-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/bar-chart-line-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bar-chart-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/bar-chart-line.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bar-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/bar-chart.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/battery-charging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/battery-charging.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/battery.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bell-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/bell-off.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/bell.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/bluetooth.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/bold.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/book-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/book-open.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/book.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/bookmark.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/box.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/briefcase.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/calendar.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/camera-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/camera-off.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/camera.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/cast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/cast.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/check-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/check-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/check-square.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/check.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/chevron-down.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/chevron-left.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/chevron-right.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/chevron-up.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevrons-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/chevrons-down.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevrons-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/chevrons-left.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevrons-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/chevrons-right.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chevrons-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/chevrons-up.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/chrome.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/clipboard.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/clock.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/cloud-drizzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/cloud-drizzle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/cloud-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/cloud-lightning.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/cloud-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/cloud-off.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/cloud-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/cloud-rain.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/cloud-snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/cloud-snow.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/cloud.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/code.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/codepen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/codepen.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/command.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/compass.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/copy.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-down-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/corner-down-left.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-left-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/corner-left-down.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-left-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/corner-left-up.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-right-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/corner-right-up.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-up-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/corner-up-left.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/corner-up-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/corner-up-right.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/cpu.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/credit-card.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/crop.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/crosshair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/crosshair.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/database.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/delete.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/disc.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/dollar-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/dollar-sign.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/download-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/download-cloud.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/download.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/droplet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/droplet.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/edit-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/edit-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/edit-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/edit-3.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/edit.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/external-link.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/eye-off.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/eye.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/facebook.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/fast-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/fast-forward.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/feather.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/file-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/file-minus.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/file-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/file-plus.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/file-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/file-text.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/file.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/film.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/filter.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/flag.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/folder-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/folder-minus.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/folder-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/folder-plus.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/folder.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/gift.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/git-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/git-branch.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/git-commit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/git-commit.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/git-merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/git-merge.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/git-pull-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/git-pull-request.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/github.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/gitlab.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/globe.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/grid.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/hard-drive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/hard-drive.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/hash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/hash.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/headphones.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/heart-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/heart-on.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/heart.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/help-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/help-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/home.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/image.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/inbox.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/info.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/instagram.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/italic.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/layers.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/layout.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/life-buoy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/life-buoy.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/link-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/link-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/link.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/linkedin.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/list.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/loader.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/lock.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/log-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/log-in.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/log-out.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/mail.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/map-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/map-pin.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/map.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/maximize-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/maximize-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/maximize.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/menu.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/message-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/message-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/message-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/message-square.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/mic-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/mic-off.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/mic.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/minimize-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/minimize-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/minimize.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/minus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/minus-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/minus-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/minus-square.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/minus.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/monitor.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/moon.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/more-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/more-horizontal.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/more-vertical-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/more-vertical-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/more-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/more-vertical.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/move.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/music.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/navigation-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/navigation-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/navigation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/navigation.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/octagon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/octagon.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/package.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/paperclip.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/pause-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/pause-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/pause.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/percent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/percent.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/phone-call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/phone-call.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/phone-forwarded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/phone-forwarded.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/phone-incoming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/phone-incoming.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/phone-missed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/phone-missed.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/phone-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/phone-off.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/phone-outgoing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/phone-outgoing.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/phone.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/pie-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/pie-chart.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/play-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/play-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/play.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/plus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/plus-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/plus-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/plus-square.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/plus.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/pocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/pocket.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/power.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/printer.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/radio.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/refresh-ccw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/refresh-ccw.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/refresh-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/refresh-cw.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/repeat.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/rewind.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/rotate-ccw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/rotate-ccw.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/rotate-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/rotate-cw.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/rss.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/save.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/scissors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/scissors.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/search.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/send.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/server.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/settings.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/share-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/share-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/share.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/shield-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/shield-off.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/shield.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/shopping-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/shopping-bag.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/shopping-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/shopping-cart.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/shuffle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/sidebar.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/skip-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/skip-back.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/skip-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/skip-forward.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/slack.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/slash.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/sliders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/sliders.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/smartphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/smartphone.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/speaker.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/square.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/star-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/star-on.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/star.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/stop-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/stop-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/sun.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/sunrise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/sunrise.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/sunset.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/tablet.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/tag.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/target.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/terminal.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/thermometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/thermometer.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/thumbs-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/thumbs-down.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/thumbs-up.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/toggle-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/toggle-left.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/toggle-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/toggle-right.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/trash-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/trash-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/trash.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/trending-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/trending-down.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/trending-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/trending-up.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/triangle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/truck.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/tv.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/twitter.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/type.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/umbrella.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/umbrella.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/underline.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/unlock.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/upload-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/upload-cloud.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/upload.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/user-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/user-check.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/user-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/user-minus.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/user-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/user-plus.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/user-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/user-x.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/user.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/users.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/video-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/video-off.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/video.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/voicemail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/voicemail.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/volume-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/volume-1.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/volume-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/volume-2.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/volume-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/volume-x.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/volume.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/watch.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/wifi-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/wifi-off.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/wifi.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/wind.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/x-circle.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/x-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/x-square.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/x.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/youtube.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/zap-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/zap-off.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/zap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/zap.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/zoom-in.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/icons/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/icons/zoom-out.svg -------------------------------------------------------------------------------- /static/fonts/feathericons/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/index.css -------------------------------------------------------------------------------- /static/fonts/feathericons/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/feathericons/preview.html -------------------------------------------------------------------------------- /static/fonts/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/css/all.css -------------------------------------------------------------------------------- /static/fonts/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/fonts/material-icons/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/material-icons/license.md -------------------------------------------------------------------------------- /static/fonts/material-icons/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/material-icons/preview.html -------------------------------------------------------------------------------- /static/fonts/material-icons/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/material-icons/scss/_animated.scss -------------------------------------------------------------------------------- /static/fonts/material-icons/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/material-icons/scss/_core.scss -------------------------------------------------------------------------------- /static/fonts/material-icons/scss/_extras.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/material-icons/scss/_extras.scss -------------------------------------------------------------------------------- /static/fonts/material-icons/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/material-icons/scss/_functions.scss -------------------------------------------------------------------------------- /static/fonts/material-icons/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/material-icons/scss/_icons.scss -------------------------------------------------------------------------------- /static/fonts/material-icons/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/material-icons/scss/_path.scss -------------------------------------------------------------------------------- /static/fonts/material-icons/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/material-icons/scss/_variables.scss -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/font-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/roboto/font-min.css -------------------------------------------------------------------------------- /static/fonts/roboto/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/fonts/roboto/font.css -------------------------------------------------------------------------------- /static/images/avatars/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/avatars/avatar1.jpg -------------------------------------------------------------------------------- /static/images/avatars/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/avatars/avatar2.jpg -------------------------------------------------------------------------------- /static/images/avatars/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/avatars/avatar3.jpg -------------------------------------------------------------------------------- /static/images/banners/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/banners/1.jpg -------------------------------------------------------------------------------- /static/images/banners/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/banners/cover.jpg -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/icons/flag-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/flag-in.png -------------------------------------------------------------------------------- /static/images/icons/flag-kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/flag-kr.png -------------------------------------------------------------------------------- /static/images/icons/flag-tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/flag-tr.png -------------------------------------------------------------------------------- /static/images/icons/flag-usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/flag-usa.png -------------------------------------------------------------------------------- /static/images/icons/flag-vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/flag-vt.png -------------------------------------------------------------------------------- /static/images/icons/pay-american-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/pay-american-ex.png -------------------------------------------------------------------------------- /static/images/icons/pay-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/pay-bank.png -------------------------------------------------------------------------------- /static/images/icons/pay-mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/pay-mastercard.png -------------------------------------------------------------------------------- /static/images/icons/pay-visa-el.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/pay-visa-el.png -------------------------------------------------------------------------------- /static/images/icons/pay-visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/pay-visa.png -------------------------------------------------------------------------------- /static/images/icons/stars-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/stars-active.svg -------------------------------------------------------------------------------- /static/images/icons/starts-disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/icons/starts-disable.svg -------------------------------------------------------------------------------- /static/images/items/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/1.jpg -------------------------------------------------------------------------------- /static/images/items/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/10.jpg -------------------------------------------------------------------------------- /static/images/items/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/11.jpg -------------------------------------------------------------------------------- /static/images/items/12-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/12-1.jpg -------------------------------------------------------------------------------- /static/images/items/12-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/12-2.jpg -------------------------------------------------------------------------------- /static/images/items/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/12.jpg -------------------------------------------------------------------------------- /static/images/items/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/2.jpg -------------------------------------------------------------------------------- /static/images/items/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/3.jpg -------------------------------------------------------------------------------- /static/images/items/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/4.jpg -------------------------------------------------------------------------------- /static/images/items/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/5.jpg -------------------------------------------------------------------------------- /static/images/items/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/6.jpg -------------------------------------------------------------------------------- /static/images/items/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/7.jpg -------------------------------------------------------------------------------- /static/images/items/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/8.jpg -------------------------------------------------------------------------------- /static/images/items/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/items/9.jpg -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/misc/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/misc/appstore.png -------------------------------------------------------------------------------- /static/images/misc/btn-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/misc/btn-paypal.png -------------------------------------------------------------------------------- /static/images/misc/cash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/misc/cash.jpg -------------------------------------------------------------------------------- /static/images/misc/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/misc/map.jpg -------------------------------------------------------------------------------- /static/images/misc/payment-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/misc/payment-bank.png -------------------------------------------------------------------------------- /static/images/misc/payment-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/misc/payment-card.png -------------------------------------------------------------------------------- /static/images/misc/payment-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/misc/payment-paypal.png -------------------------------------------------------------------------------- /static/images/misc/payments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/misc/payments.png -------------------------------------------------------------------------------- /static/images/misc/playmarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/images/misc/playmarket.png -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /static/js/jquery-2.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/js/jquery-2.0.0.min.js -------------------------------------------------------------------------------- /static/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/static/js/script.js -------------------------------------------------------------------------------- /store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/admin.py -------------------------------------------------------------------------------- /store/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/apps.py -------------------------------------------------------------------------------- /store/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/forms.py -------------------------------------------------------------------------------- /store/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/migrations/0001_initial.py -------------------------------------------------------------------------------- /store/migrations/0002_variation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/migrations/0002_variation.py -------------------------------------------------------------------------------- /store/migrations/0003_reviewrating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/migrations/0003_reviewrating.py -------------------------------------------------------------------------------- /store/migrations/0004_productgallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/migrations/0004_productgallery.py -------------------------------------------------------------------------------- /store/migrations/0005_auto_20210321_0717.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/migrations/0005_auto_20210321_0717.py -------------------------------------------------------------------------------- /store/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/models.py -------------------------------------------------------------------------------- /store/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/tests.py -------------------------------------------------------------------------------- /store/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/urls.py -------------------------------------------------------------------------------- /store/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/store/views.py -------------------------------------------------------------------------------- /templates/accounts/account_verification_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/account_verification_email.html -------------------------------------------------------------------------------- /templates/accounts/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/change_password.html -------------------------------------------------------------------------------- /templates/accounts/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/dashboard.html -------------------------------------------------------------------------------- /templates/accounts/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/edit_profile.html -------------------------------------------------------------------------------- /templates/accounts/forgotPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/forgotPassword.html -------------------------------------------------------------------------------- /templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/login.html -------------------------------------------------------------------------------- /templates/accounts/my_orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/my_orders.html -------------------------------------------------------------------------------- /templates/accounts/order_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/order_detail.html -------------------------------------------------------------------------------- /templates/accounts/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/register.html -------------------------------------------------------------------------------- /templates/accounts/resetPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/resetPassword.html -------------------------------------------------------------------------------- /templates/accounts/reset_password_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/accounts/reset_password_email.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/includes/alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/includes/alerts.html -------------------------------------------------------------------------------- /templates/includes/dashboard_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/includes/dashboard_sidebar.html -------------------------------------------------------------------------------- /templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/includes/footer.html -------------------------------------------------------------------------------- /templates/includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/includes/navbar.html -------------------------------------------------------------------------------- /templates/orders/order_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/orders/order_complete.html -------------------------------------------------------------------------------- /templates/orders/order_recieved_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/orders/order_recieved_email.html -------------------------------------------------------------------------------- /templates/orders/payments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/orders/payments.html -------------------------------------------------------------------------------- /templates/store/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/store/cart.html -------------------------------------------------------------------------------- /templates/store/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/store/checkout.html -------------------------------------------------------------------------------- /templates/store/product_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/store/product_detail.html -------------------------------------------------------------------------------- /templates/store/store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/greatkart-course/HEAD/templates/store/store.html --------------------------------------------------------------------------------