▶️ Watch Entire Django Wednesdays Playlist ✅ Subscribe To My TH-cam Channel: bit.ly/35Xo9jD bit.ly/2IGzvOR ▶️ See More At: ✅ Join My Facebook Group: Codemy.com bit.ly/2GFmOBz ▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt! Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN ▶️ Get The Code bit.ly/3sJpeV6
First of all, thank you for this amazing series. I am learning a lot from you. For those people who get something like this error: The view didn't return an HttpResponse object. It returned None instead. add this "else" to the code to temporarily solve the problem: if form.is_valid(): ... else: messages.success( request, "There Was An Error Registering. Try Again...") return redirect('register_user')
One of the best channels I have come across so far on TH-cam. I was able to incorporate what you taught in my project. Works like a charm! Thank you :)
Maaaaaan, this is simply amazing!!!! After watching this, I now understand the Django user registration creation process because it's so well explained. I just looove Django.
Hey John. First of all: Thanks for your videos! I can't tell you how much they've helped me understand Django and how much they've helped me at work! I am having an issue with the registration page, though. I have the exact same code as you, but when I use the function-based view like you have it, I get an error saying that it didn't return an Http object, that it returned None instead (I am using Django 4.1). I switched to a class-based view and it worked, though.
Thanks for the great video! I do have a brief question. At 9:00 when you pass the form into the render function, why isn't the object scoped to the if and else statements? I'm having a hard time understanding why django allows for this.
Love your video series. I have been following both your flask and django series. I was wondering if you know of a way to provide Admin approval for user registration? Any change you might be able to do a video on the topic?
Hey john, So I did exactly what you did. I successfully registered a user and it was also logged in after registering. BUT when I logged it out and tried to log that user in again, nothing happens. Please help me...
Can you tell us how to customize the form text? Where it says "The password must be ______". I can't figure out how to do that. Tyyyy your videos are so helpful!!!
▶️ Watch Entire Django Wednesdays Playlist ✅ Subscribe To My TH-cam Channel:
bit.ly/35Xo9jD bit.ly/2IGzvOR
▶️ See More At: ✅ Join My Facebook Group:
Codemy.com bit.ly/2GFmOBz
▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt!
Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN
▶️ Get The Code
bit.ly/3sJpeV6
hi
First of all, thank you for this amazing series. I am learning a lot from you.
For those people who get something like this error:
The view didn't return an HttpResponse object. It returned None instead.
add this "else" to the code to temporarily solve the problem:
if form.is_valid():
...
else:
messages.success(
request, "There Was An Error Registering. Try Again...")
return redirect('register_user')
it didn't solve it
As always, I learn a lot from your videos . . . can't wait for Wednesday each week! Who cares about weekends!!!
Ha, thanks! And did you stick your head outside this morning here in Vegas (saturday)? The air is yellow today LOL
@@Codemycom We need California to confine its wildfire smoke to within its borders. That might help!
@@briangreenberg153 yep!
One of the best channels I have come across so far on TH-cam. I was able to incorporate what you taught in my project. Works like a charm! Thank you :)
Happy to hear it!
This video is so much better than other content I've followed for this stuff. Big fan!
Thanks! Tell your friends ;-)
Maaaaaan, this is simply amazing!!!! After watching this, I now understand the Django user registration creation process because it's so well explained. I just looove Django.
Happy to hear it!
Just wanna say this guy taught me me loads , thank you
Happy to hear it!
This channel helps me a lot huhuhuhu loveloooots!
Excelente como siempre! Muchas gracias!
Welcome
I have learned a tons of your Django videos. Thank you so much!
Happy to hear it!
Thank you very much for your videos! Great tutorials!!
you have done great job thank you love from india❤❤
Thanks!
Hey John. First of all: Thanks for your videos! I can't tell you how much they've helped me understand Django and how much they've helped me at work! I am having an issue with the registration page, though. I have the exact same code as you, but when I use the function-based view like you have it, I get an error saying that it didn't return an Http object, that it returned None instead (I am using Django 4.1). I switched to a class-based view and it worked, though.
when people say they have the exact same code as me...99% of the time, they don't. There's usually a typo they don't notice.
Hello, I was just wondering, why isn’t the last return statement in views indented and placed within the else statement?
Thanks for the great video! I do have a brief question. At 9:00 when you pass the form into the render function, why isn't the object scoped to the if and else statements? I'm having a hard time understanding why django allows for this.
Thanks a lot Sir.
Please could you make a video on how user can log in with the combinaison of email and password?
Love your video series. I have been following both your flask and django series. I was wondering if you know of a way to provide Admin approval for user registration? Any change you might be able to do a video on the topic?
I just did a video on admin approval of events...
John, how do we center the word "August" that appears on the rendering of the calendar on the home page this month?
Going to have to go into a whole video on styling that thing...
Hey john, So I did exactly what you did. I successfully registered a user and it was also logged in after registering. BUT when I logged it out and tried to log that user in again, nothing happens. Please help me...
Not sure what you did, but it wasn't exactly what I did, you missed something...you'll have to rewatch and figure out what that was...
If I am developing my website using Django and Vue, would this code work for me as well?
Probably, though I've never used Vue
Can you tell us how to customize the form text? Where it says "The password must be ______". I can't figure out how to do that. Tyyyy your videos are so helpful!!!
I said in the video that I'd talk about customizing it later.
is the source code for the examples in this video available? if yes, please share the URL
In the pinned comment
Please how to recive notification in my gmaol when someone cotact me in contact form
how do i edit the text that django forms has by default?
change it in the forms.py file...I have videos showing that if you look around on the channel
👍
🙂
I love you
Thanks!
How can I get these codes?
The code is in the pinned comment.
please explain in detail
explain what in detail?
Walter white
lol
Didn't work for me.
that's because you did it wrong...check your code for errors
I got this error "The view pages.views.sign_up didn't return an HttpResponse object. It returned None instead."
Check your code vs the video and figure out what you did differently.