Skip to content

Django e-commerce shop, including Carts, Orders, and Payments.

Notifications You must be signed in to change notification settings

Tnovyloo/E-Commerce-Shop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

E-Commerce created in Django.

Created with: Django, SQLite, HTML, CSS, JS, BootStrap, for Payments i used PayPal.

Products

  • Shop is able to have products with various variations ( Sizes and Colors of product) and also categories.
  • User could easily search products via Search View.
  • User could browse by categories.
  • Easy Adding to Cart View.
  • If product quantity is equal to 0, user could not see this product.
  • Reviews of authenticated users (Product must be purchased before by user)

Cart

  • User has a Cart View from which he could increase or decrease amount of specific Product (And of course Delete).
  • If User is not authorized, the cart is saved on the Session Key, when if User authorizes, the cart will be automatically assigned to the logged User.
  • When User make the "Checkout" on "Cart Page" and provide data, then he is redirected to "Make Order" view, and his Cart is assigned to the new Order (Order Model).

Orders

  • Every order has generated unique ID.
  • "Checkout" view uses a "Billing" Form which contains needed data to make a new order.
  • "Make Order" is the page with summarized data of the order and cart. User could pay for order via PayPal.
  • When payment is successful, User is redirected to "Payment Successful" View.
  • Server sends a confirmation of taking order (To the Order E-mail and Account E-mail)

Accounts

  • Custom user model
    • To register, use "Register View"
    • To activate account, User needs to activate it via e-mail (Server send Verification E-mail via SMTP G-Mail)
    • Imported "Django messages" to send success or error messages from server.
    • "Forgot Password View" also uses verification e-mail process.
    • Implemented DashBoard with User orders and User contact data (with forms to change them if needed).

Admin Panel

  • Created a lot of changes in Admin Panel to make it easier to use.

Screenshots

Store

-Home page (Context processors on categories data used in "Category" dropdown menu)

image

-Store page (With Paginator)

image

-Product detail page

image

- Reviews of product. (On the same page as Product Detail)

image

Cart - Ordering process.

-Cart with various variants of product.

image

-Checkout page

image

-Place order page

image

-Payment with PayPal

image

-Purchase confirmation

image

-SMTP G-mail order purchase confirmation (Currently no template for E-mail Message)

image

Login/Registration

-Login (With success Django Message)

image

-Register

image

- Register sucessful

image

DashBoard

-User information data

image

-User orders page

image

-Specific order page

image

-Edit Profile page

image

-Change Passoword page

image

About

Django e-commerce shop, including Carts, Orders, and Payments.

Resources

Stars

Watchers

Forks