▶ Watch Django Wednesdays Ecommerce Playlist ✅ Subscribe To My KZbin Channel: bit.ly/3OBQJfN 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 50% off with coupon code: youtube50 bit.ly/2VC9WUN ▶ Get The Code bit.ly/47xAhWJ
@onkarsawant10044 ай бұрын
one of the best django series!!
@Codemycom3 ай бұрын
thanks!
@Codemycom3 ай бұрын
thanks!
@onkarsawant10043 ай бұрын
Could we get a video on how to get user phone number in our user model directly?
@Codemycom3 ай бұрын
@@onkarsawant1004 you don't. You can't add things to the user model. You can add it to another model and then associate it with a foreign key, in the way we added all the user stuff.
@kelver31589 ай бұрын
What a great class, I learned a lot, let's move on🚀
@njorogengotho880 Жыл бұрын
I have been waiting for this the whole week. I can't believe the next tutorial is next week 😪😪
@Codemycom Жыл бұрын
🙂
@Ahmad_Al-Deeb4 ай бұрын
Thanks! 7th & 8th videos helped me a lot with Authentication.
@Codemycom4 ай бұрын
Glad it helped!
@technologybysrk8419 Жыл бұрын
Thank you, i just finished #8
@Codemycom Жыл бұрын
Groovy
@namdarcs Жыл бұрын
Great video John as always... Ill wait for more:) Do we have any idea what the next video will be expanding on ? Just curious lol
@Codemycom Жыл бұрын
Product pages :-p
@deebx821411 ай бұрын
am actually building a website using this tutorial
@Codemycom11 ай бұрын
Happy to hear it
@LearnKH-s2rАй бұрын
hi professor this course very excellent How can I access this project? in github
@CodemycomАй бұрын
I explain that at the beginning of every video
@codebank48539 ай бұрын
It is worth tutorial for me. I have a question. how can I add telephone number field to registration form?
@Codemycom9 ай бұрын
You have to extend the user registration model...we'll be discussing this soon.
@ВалерійКубрак11 ай бұрын
Good tutorial, thanks a lot!
@Codemycom11 ай бұрын
welcome!
@anuragbhattacharjee39843 ай бұрын
This is awesome!!
@Codemycom3 ай бұрын
thank you!
@pedrocabellocastro97925 ай бұрын
Excelent!
@Codemycom5 ай бұрын
Thanks!
@nandhanakb5785 Жыл бұрын
Hy....ur video is very useful.then you can upload fast🤓 because we are waiting...
@Codemycom Жыл бұрын
They come out once per week on Wednesday, hence the name.
@YieGin10 ай бұрын
Hi don't you think Djoser library better?
@stevenodutu780411 ай бұрын
There are how many ways of creating a login, logout and registration system in django and which is the most preffered ?
@Codemycom11 ай бұрын
Whichever works for your situation...why wouldn't you just use the default system built into Django?
@DelginAhmed6 ай бұрын
Thank you very much
@Codemycom6 ай бұрын
Welcome
@ram_qr5 ай бұрын
brilliant
@Codemycom5 ай бұрын
thanks!
@infinitespace198210 ай бұрын
whenever I try to register a new account, it returns a csrf middleware token in the terminal and no validation checks are performed and even if all fields are valid, the user isn't added to the database
@Codemycom10 ай бұрын
Sounds like you forgot to add the csrf token to the form code
@infinitespace198210 ай бұрын
@@Codemycom I added that already, it turns out, I misspelt 'method' in the form tag. Thanks for your help
@infinitespace198210 ай бұрын
@@Codemycom But I noticed another issue, I made a dashboard template that the user is redirected to after logging in (which works), however, the navbar does not update to give the 'logout' option.
@Codemycom10 ай бұрын
@@infinitespace1982 then you typed the navbar logic incorrectly
@rushimithagare25982 ай бұрын
hey jhon having someproblems with Exception Type: MultiValueDictKeyError Exception Value: 'password' when i hit register
@Codemycom2 ай бұрын
Rewatch the video and check your code to discover what you typed wrong
@zavyarproduction80775 ай бұрын
Hi, do we write password for our email or for username
@Codemycom5 ай бұрын
The video shows you
@laxmishrestha58977 ай бұрын
I am having MultiValueDictKeyError at login_user password. Can you please help me to resolve it?
@LordShadow013 ай бұрын
shouldn't registration be for customers and data should be in the customer table not in the admin table, I'm confused. please someone answer me.
@Codemycom3 ай бұрын
There is no admin table...I think you're confused
@LordShadow013 ай бұрын
@@Codemycom sorry i mean Users
@LordShadow013 ай бұрын
@@Codemycom register feature should be for a normal customer so data should go into the customer table if I understand correctly. and love your videos I started following you after seeing your video on freecodecamp. learned a lot
@LordShadow013 ай бұрын
@@Codemycom Sorry I mean Users, register functionality should be for normal customers to register themselves right, if Customer data were going to be stored in Users then what is the use of the Customer table?
@RittaRamachandran3 ай бұрын
ValueError: The User could not be created because the data didn't validate.... error is this.. any suggestion sir?
@shacharyaar38103 ай бұрын
happend to me also!
@shacharyaar38103 ай бұрын
the problem for me was i wrote "if form.is_valid" instead of "if form.is_valid()"
@Codemycom3 ай бұрын
Rewatch the video to discover what you did differently
@RittaRamachandran3 ай бұрын
'str' object has no attribute 'get_bound_field'...............i am recieving this error while clicking on signup button can u help me pls
@Codemycom3 ай бұрын
you'll have to check your code vs the video and discover what you did differently.
@RittaRamachandran3 ай бұрын
some typing mistakes.thanks alot sir for your reply 🙂
@Codemycom3 ай бұрын
@@RittaRamachandran ah yeah, that’s usually the case. Glad you got it sorted out.
@AyishaZiyana10 ай бұрын
Can you do multiple user model?
@Codemycom10 ай бұрын
What do you mean? This handles multiple users.
@nandhanakb5785 Жыл бұрын
Will this project be completed this month
@Codemycom Жыл бұрын
Most definitely not...nowhere close.
@garcianogarciagarciano681110 ай бұрын
i need your github
@Codemycom10 ай бұрын
It's in the pinned comment, as always
@amel_.s5 ай бұрын
I am not able to regitser new user the if part conditons in views.py of register_user is not executed for me only else part is executed .can you help me to resolve the error
@Codemycom5 ай бұрын
compare your code to the video and discover what error you made when typing it.
@amel_.s5 ай бұрын
@@Codemycom I already did . Even I had checked your source code in git hub and I found that you had given key for password as password1 but in video you are giving it as password. For me it's saying key error for that password but I have given the same that you had given in this video . Also for me the user is registered from that form but not redirected instead its saying key error.when I checked the admin panel the registered user is there. How can I solve this it's saying something wrong with that password key?
@Codemycom5 ай бұрын
@@amel_.s No, it's passoword1 in one place and password in another. The code has to be exactly as in the video.