├── .gitattributes ├── .gitignore ├── README.md ├── accounts ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_user.py │ ├── 0003_auto_20200204_1754.py │ ├── 0004_auto_20200204_1857.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── addresses ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── billing ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── carts ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── ecommerce ├── __init__.py ├── forms.py ├── settings.py ├── urls.py ├── utils.py ├── views.py └── wsgi.py ├── manage.py ├── mediafiles └── products │ └── .gitignore ├── orders ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190826_1543.py │ ├── 0003_auto_20190920_0005.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── products ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── search ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── static ├── .gitkeep └── js │ ├── contact.js │ └── search.js ├── staticfiles └── .gitignore ├── tags ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py └── templates ├── accounts ├── login.html ├── register.html └── snippets │ └── login_form.html ├── addresses └── snippets │ ├── form.html │ └── prev_addresses.html ├── base.html ├── base ├── css.html ├── js.html └── navbar.html ├── carts ├── checkout-done.html ├── checkout.html ├── home.html └── snippets │ ├── cart-ajax.html │ └── remove-product.html ├── contact.html ├── home.html ├── products ├── detail.html ├── list.html └── snippets │ ├── card.html │ └── update-cart.html └── search ├── snippets └── search-form.html └── view.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/README.md -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounts/migrations/0002_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/migrations/0002_user.py -------------------------------------------------------------------------------- /accounts/migrations/0003_auto_20200204_1754.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/migrations/0003_auto_20200204_1754.py -------------------------------------------------------------------------------- /accounts/migrations/0004_auto_20200204_1857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/migrations/0004_auto_20200204_1857.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/accounts/views.py -------------------------------------------------------------------------------- /addresses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addresses/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/addresses/admin.py -------------------------------------------------------------------------------- /addresses/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/addresses/apps.py -------------------------------------------------------------------------------- /addresses/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/addresses/forms.py -------------------------------------------------------------------------------- /addresses/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/addresses/migrations/0001_initial.py -------------------------------------------------------------------------------- /addresses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addresses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/addresses/models.py -------------------------------------------------------------------------------- /addresses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/addresses/tests.py -------------------------------------------------------------------------------- /addresses/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/addresses/urls.py -------------------------------------------------------------------------------- /addresses/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/addresses/views.py -------------------------------------------------------------------------------- /billing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /billing/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/billing/admin.py -------------------------------------------------------------------------------- /billing/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/billing/apps.py -------------------------------------------------------------------------------- /billing/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/billing/migrations/0001_initial.py -------------------------------------------------------------------------------- /billing/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /billing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/billing/models.py -------------------------------------------------------------------------------- /billing/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/billing/tests.py -------------------------------------------------------------------------------- /billing/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /carts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/carts/admin.py -------------------------------------------------------------------------------- /carts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/carts/apps.py -------------------------------------------------------------------------------- /carts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/carts/migrations/0001_initial.py -------------------------------------------------------------------------------- /carts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/carts/models.py -------------------------------------------------------------------------------- /carts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/carts/tests.py -------------------------------------------------------------------------------- /carts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/carts/urls.py -------------------------------------------------------------------------------- /carts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/carts/views.py -------------------------------------------------------------------------------- /ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/ecommerce/forms.py -------------------------------------------------------------------------------- /ecommerce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/ecommerce/settings.py -------------------------------------------------------------------------------- /ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/ecommerce/urls.py -------------------------------------------------------------------------------- /ecommerce/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/ecommerce/utils.py -------------------------------------------------------------------------------- /ecommerce/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/ecommerce/views.py -------------------------------------------------------------------------------- /ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/ecommerce/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/manage.py -------------------------------------------------------------------------------- /mediafiles/products/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/orders/admin.py -------------------------------------------------------------------------------- /orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/orders/apps.py -------------------------------------------------------------------------------- /orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /orders/migrations/0002_auto_20190826_1543.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/orders/migrations/0002_auto_20190826_1543.py -------------------------------------------------------------------------------- /orders/migrations/0003_auto_20190920_0005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/orders/migrations/0003_auto_20190920_0005.py -------------------------------------------------------------------------------- /orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/orders/models.py -------------------------------------------------------------------------------- /orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/orders/tests.py -------------------------------------------------------------------------------- /orders/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /products/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/products/__init__.py -------------------------------------------------------------------------------- /products/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/products/admin.py -------------------------------------------------------------------------------- /products/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/products/apps.py -------------------------------------------------------------------------------- /products/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/products/migrations/0001_initial.py -------------------------------------------------------------------------------- /products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/products/models.py -------------------------------------------------------------------------------- /products/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/products/tests.py -------------------------------------------------------------------------------- /products/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/products/urls.py -------------------------------------------------------------------------------- /products/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/products/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/requirements.txt -------------------------------------------------------------------------------- /search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/search/admin.py -------------------------------------------------------------------------------- /search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/search/apps.py -------------------------------------------------------------------------------- /search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/search/models.py -------------------------------------------------------------------------------- /search/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/search/tests.py -------------------------------------------------------------------------------- /search/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/search/urls.py -------------------------------------------------------------------------------- /search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/search/views.py -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/static/js/contact.js -------------------------------------------------------------------------------- /static/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/static/js/search.js -------------------------------------------------------------------------------- /staticfiles/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/tags/admin.py -------------------------------------------------------------------------------- /tags/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/tags/apps.py -------------------------------------------------------------------------------- /tags/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/tags/migrations/0001_initial.py -------------------------------------------------------------------------------- /tags/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/tags/models.py -------------------------------------------------------------------------------- /tags/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/tags/tests.py -------------------------------------------------------------------------------- /tags/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/accounts/login.html -------------------------------------------------------------------------------- /templates/accounts/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/accounts/register.html -------------------------------------------------------------------------------- /templates/accounts/snippets/login_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/accounts/snippets/login_form.html -------------------------------------------------------------------------------- /templates/addresses/snippets/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/addresses/snippets/form.html -------------------------------------------------------------------------------- /templates/addresses/snippets/prev_addresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/addresses/snippets/prev_addresses.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/base/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/base/css.html -------------------------------------------------------------------------------- /templates/base/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/base/js.html -------------------------------------------------------------------------------- /templates/base/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/base/navbar.html -------------------------------------------------------------------------------- /templates/carts/checkout-done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/carts/checkout-done.html -------------------------------------------------------------------------------- /templates/carts/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/carts/checkout.html -------------------------------------------------------------------------------- /templates/carts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/carts/home.html -------------------------------------------------------------------------------- /templates/carts/snippets/cart-ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/carts/snippets/cart-ajax.html -------------------------------------------------------------------------------- /templates/carts/snippets/remove-product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/carts/snippets/remove-product.html -------------------------------------------------------------------------------- /templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/contact.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/products/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/products/detail.html -------------------------------------------------------------------------------- /templates/products/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/products/list.html -------------------------------------------------------------------------------- /templates/products/snippets/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/products/snippets/card.html -------------------------------------------------------------------------------- /templates/products/snippets/update-cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/products/snippets/update-cart.html -------------------------------------------------------------------------------- /templates/search/snippets/search-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/search/snippets/search-form.html -------------------------------------------------------------------------------- /templates/search/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umutbektas/django-ecommerce/HEAD/templates/search/view.html --------------------------------------------------------------------------------