Build an Ecommerce Website with Django // Part 5 - The checkout process

  Рет қаралды 29,304

Matt Freire

Matt Freire

Күн бұрын

Пікірлер: 45
@gregruiz2414
@gregruiz2414 3 жыл бұрын
Michael Phelps of Django... like watching a ninja whoopazz on some bully... extremely gratifying to watch this guy spit out code faster than he can talk... learning soooo much. Thanks!!!
@prismkoirala8015
@prismkoirala8015 5 жыл бұрын
The world needs people like you.
@AliRaza-sr5ui
@AliRaza-sr5ui 4 жыл бұрын
@JustDjango Your Tutorials Are Awesome Just wanted to say that instead of changing the entire form for styling all you have to do is add the class "card-body" to the form tag like this: {% csrf_token %} {{ form|crispy }}
@sharhanalhassan7352
@sharhanalhassan7352 3 жыл бұрын
It takes me more than 2 days to fully understand each of these 30-minute videos. The information in there is really massive. Thanks a lot. Your emmet usage is powerful, can you always mention the shortcut keystrokes when using them?
@brylie
@brylie 5 жыл бұрын
I think the "save info" feature is meant as a convenience for returning customers, so they can sign-in and re-use their previously saved address(es). This is distinct from saving the billing/shipping address(es) for billing and fulfillment.
@OxMiroslav
@OxMiroslav 5 жыл бұрын
Awesome as usual. @JustDjango, the whole week I'll wait for you next vid. Thanks for you effort! Of course, I'll be working on my eshop during this week. Thanks to you I start learning React.
@kiranraj-dw5gq
@kiranraj-dw5gq 4 жыл бұрын
Hey bro ,as usual thanks for this awesome tutorial. You Rock!!
@jessenyakundi7491
@jessenyakundi7491 4 жыл бұрын
You are the best thing that has ever happened to youtube .
@laminann8061
@laminann8061 3 жыл бұрын
Great tutorial
@andrewsmichael7047
@andrewsmichael7047 Жыл бұрын
Great job boss
@AmiFideleNimana
@AmiFideleNimana 5 жыл бұрын
@Justdjango Thanks for you help we appreciate
@sujitnoronha5030
@sujitnoronha5030 5 жыл бұрын
Thanks a lot for these tutorials!
@kheangsenghort842
@kheangsenghort842 5 жыл бұрын
Very cool video.
@donbozarth6627
@donbozarth6627 10 ай бұрын
HI Matt, Can I run this using Django 5? If so, are there any real changes to be made or gotcha stuff that will make me walk down a road to nowhere? Thanks. Love ur stuff.
@maxitorres7
@maxitorres7 4 жыл бұрын
Nice content!
@AMC-throwaway
@AMC-throwaway 5 жыл бұрын
I am having trouble getting the select to keep the styling, had to manually put the classes in forms.py to get the others to look the same unlike the video
@mohammadparsai3127
@mohammadparsai3127 4 жыл бұрын
Firstly, thank you for your great tutorial! when I want to define 'country' in a class of (models.Model) as: country = CountryField(multiple=False) above line doesn't work on django 3.1.2 anymore and returns the following error: AttributeError: 'CountryField' object has no attribute 'db_collation' so I have to define it as a models.CharField, do you have any suggestion?
@sukatamashben9650
@sukatamashben9650 4 жыл бұрын
from django_countries.fields import CountryField import this your models.py file
@_MR_VENKAT
@_MR_VENKAT 5 жыл бұрын
getting issue when i migrate to change countries to country like django.db.utils.OperationalError: (1091, "Can't DROP COLUMN `countries`; check that it exists")
@yacinerouizi844
@yacinerouizi844 4 жыл бұрын
what is the shortcut to make comment "{% comment %}{% endcomment %}" in template ?
@fdm6334
@fdm6334 5 жыл бұрын
Just a heads up for those following the tutorial... There's a small bug in the code. When we remove an item from the cart with the remove_from_cart view, if we put the same item back in the cart, the quantity will not be initially set to 1, but to the one that was set before the removal.
@AMC-throwaway
@AMC-throwaway 5 жыл бұрын
Solution...
@AMC-throwaway
@AMC-throwaway 5 жыл бұрын
Have you tried removing one at time or the completely remove? I had the issue before but cleared cache redid everything and when I tried removing the quantity the issue resolved itself and then I tried removing the remaining and it had no issue after
@fdm6334
@fdm6334 5 жыл бұрын
@@AMC-throwaway When I completely removed. It worked fine when I removed one item at a time. The issue was fixed on a later video though.
@AMC-throwaway
@AMC-throwaway 5 жыл бұрын
f dm ahh I see will Have to finish the other videos. Been busy streaming so haven’t had a chance to finish the tutorial.
@onexsp1492
@onexsp1492 4 жыл бұрын
In the remove from cart method i put the following code to solve that issue: order_item.quantity = 1 order.items.remove(order_item) order_item.save() now every time i remove the item using the trash icon and ad the same item again, it will start in 1
@Shivam_Manswalia
@Shivam_Manswalia 4 жыл бұрын
How to add {% comment %} 11:51 using shortcut key in vs code ?? anyone??
@arifulkader4691
@arifulkader4691 4 жыл бұрын
' ctrl + / '
@Shivam_Manswalia
@Shivam_Manswalia 4 жыл бұрын
@@arifulkader4691 that doesn't work like {%comment%} ....{%endcomment%}
@drewpham9662
@drewpham9662 5 жыл бұрын
why keep payment information separate?
@shahwood015
@shahwood015 3 жыл бұрын
NoReverseMatch at /cart/checkout/ 'core' is not a registered namespace I am getting this error please help
@sharhanalhassan7352
@sharhanalhassan7352 3 жыл бұрын
did you put app_name= 'core' in the core/urls.py
@vindisel4632
@vindisel4632 5 жыл бұрын
hi ,i have an issue regarding cart ,it does not increase the quantity of item,every time it show somthing like this. ,AttributeError at /add-to-cart/test/ 'Order' object has no attribute 'items' please help me .....
@ak2ree865
@ak2ree865 5 жыл бұрын
Vin Disel use the item
@jeffersonc.m107
@jeffersonc.m107 4 жыл бұрын
19:44
@prakashkumarbhanja6270
@prakashkumarbhanja6270 4 жыл бұрын
hii all, i am little bit weak in django ORM, is there any one who can help me out in this, any tutorial suggestions...
@ak2ree865
@ak2ree865 5 жыл бұрын
how to select the variables in different lines? please give me the hotkeys)))
@arielm192
@arielm192 4 жыл бұрын
In visual studio code you can hold CTRL and then left click in each text you want for multiple selection.
@narendrasaud1860
@narendrasaud1860 4 жыл бұрын
actually sr , bootstrap is not loaded in my templates
@Vampirio20
@Vampirio20 5 жыл бұрын
Does anyone know why BillingAddress doesnt show um in admin ?
@DefundTheEmpire
@DefundTheEmpire 5 жыл бұрын
You must add it to admin.py from .models import BillingAddress admin.site.register(BillingAddress)
@javascriptprograming9828
@javascriptprograming9828 5 жыл бұрын
Bro how to fix The view JustShop.views.CheckoutView don’t return an HttpResponse object..........., I can't fix it. Please help me, I am going to be mad, i already codding about 100 times.
@prismkoirala8015
@prismkoirala8015 5 жыл бұрын
@@javascriptprograming9828 bro be mad , then you'll learn
@athulanil6292
@athulanil6292 5 жыл бұрын
@@javascriptprograming9828 Bro give else condition to if form.is_valid()
@hassanelshazlyeida3969
@hassanelshazlyeida3969 5 жыл бұрын
😍😍😍😍😍
Django-Unicorn - Building a Shopping Cart Component
27:17
BugBytes
Рет қаралды 6 М.
UFC 287 : Перейра VS Адесанья 2
6:02
Setanta Sports UFC
Рет қаралды 486 М.
I Sent a Subscriber to Disneyland
0:27
MrBeast
Рет қаралды 104 МЛН
Ozoda - Alamlar (Official Video 2023)
6:22
Ozoda Official
Рет қаралды 10 МЛН
Configure environment variables with Dotenv in Django
10:07
Cloud With Django
Рет қаралды 8 М.
Django 4.0 Crash Course | Build a Real Estate Website
2:07:49
Matt Freire
Рет қаралды 66 М.
Django and Stripe Payments Tutorial
1:10:27
Matt Freire
Рет қаралды 100 М.
How I Coded An Entire Website Using ChatGPT
18:22
Nick White
Рет қаралды 1,9 МЛН
This Django-powered startup is taking over!
22:06
CodingEntrepreneurs
Рет қаралды 25 М.
I Redesigned the ENTIRE YouTube UI from Scratch
19:10
Juxtopposed
Рет қаралды 1 МЛН
UFC 287 : Перейра VS Адесанья 2
6:02
Setanta Sports UFC
Рет қаралды 486 М.