Book your seats before the Price Increase - bit.ly/3yZthF6 Coupon - DJMASTER
@codespider148 Жыл бұрын
bro really really thanks aagar mai aaj django sikan hun toh uska reason sirf tum ho sachme bahut helpfull hai tutorials keep it up hoping more such kind of tutorials from you
@vaibhavsatone2940Ай бұрын
15:10 Just a little correction the create_user method itself calls set_password . This ensures the password is hashed securely before being saved to the database. i.e. this code "user = User.objects.create_user(username=U_N, email=email, password=p1)" is equal to "user = User(username=U_N, email=email) user.set_password(p1) user.save()"
@adarshpandeyyt2 ай бұрын
Ok, you're doing well to taught us...🎉
@ravi_1_0_1_09 ай бұрын
really good series !! my first time exploring this domain . The credits to you .
@Funny-dl7io Жыл бұрын
Thanks for this tutorial play list. Love from Bangladesh.
@muhammadnomanaslam1846 ай бұрын
great effort ladke, aur advance congratulations for 100k subcribes xd, keep it up
@ananyavats6914 Жыл бұрын
Following your all django videos❤
@codewithom11 Жыл бұрын
Brother, i have a doubt. Whatever we are doing is on local right. But if i want to deploy the app, i must use real time databases. In that case, can we use django's inbuilt authentication or we have to use other services?
@siddheshrajgure8097 Жыл бұрын
Same question
@surajpatil7604 Жыл бұрын
we can use the inbuilt authentication as it loads data from the server. if you have the data in the server we can use the inbuilt function
@navedahemdkhan954810 ай бұрын
Such great work
@KamalSaxena-ns2hf Жыл бұрын
Sir, full stack Web development course tranning institute batao Edureka vs newton schools vs others in details compare
@gatecsementor Жыл бұрын
Content is absolute amazing. Can you please provide the project link
@mshahzaibbaghdadi49022 ай бұрын
nice g
@rajashehryar20022 ай бұрын
Very nice video . Keep it up
@eveil_bakwas Жыл бұрын
Can you please make all videos on django a-z in deep and please also make project
@aakashyadav33518 ай бұрын
jab aap user pe click kar rhe ho toh models wali clas kese open ho jaaye
@aqsazubair1173 Жыл бұрын
best content for learning django 😇
@amanverma5846 Жыл бұрын
Amazing sir that very easy to learn cause of you
@samurai18119 ай бұрын
Great Video
@aa.shourav Жыл бұрын
Thank you for the series 😍😍
@AyushPandey-jx5ie Жыл бұрын
Fabulous content 👏
@code-with-vivek Жыл бұрын
Nice video with great info...
@thoropyt9955 Жыл бұрын
thanks you for making this type of content:)
@ram-2-ram11 ай бұрын
great video
@KanpurSwagger Жыл бұрын
Continuing🎉🎉🎉
@Rishabhkumar-ys3jc6 ай бұрын
good video
@simranjeetsingh465311 ай бұрын
sir validations ka uper vedio bnao
@VaibhavC-co1bi Жыл бұрын
Cannot get the user values in shell
@softwareengineer18 ай бұрын
best ending 😁
@Ameyiscool7 ай бұрын
kya aap bhi Django seekh rahe ho?
@sharab2639 Жыл бұрын
Vai pls makes more django projects videos again
@waqarahktar-k2t Жыл бұрын
thanks you 😀
@ayushmantiwari6441 Жыл бұрын
Great!
@dharmeshwadhavana5 ай бұрын
theme ka extension batado koi plzz
@shashankgaikwad5825 Жыл бұрын
How do you get that link under "User" 10:33
@akashbhandary489 Жыл бұрын
you have to press control+left click
@gaireyc62156 ай бұрын
@@akashbhandary489 thank you
@gauravchaudhary6941 Жыл бұрын
i am getting this error cannot access local variable 'first_name' where it is not associated with a value in this: user = User.objects.create( first_name = first_name, last_name = last_name, username = username, ) not able to solve this
@VaibhavC-co1bi Жыл бұрын
I guess it should be user=User.objects.create_user()
@ghostkhan92427 ай бұрын
user = models.ForeignKey(User , on_delete=models.SET_NULL , null=True, blank=True, unique=True)
@ghostkhan92427 ай бұрын
@@VaibhavC-co1bi user = models.ForeignKey(User , on_delete=models.SET_NULL , null=True, blank=True, unique=True)
@shanksharma5117 Жыл бұрын
Instead of using hardcoded URLs, instead you can provide them name and use their name. It would be better
Bhai mere me form submit karne pe uname and password submit nahi ho raha
@debashishparida257811 ай бұрын
same...queryset mein kuch show nahi ho raha ☹☹
@manojpaudel34608 ай бұрын
i am also getting similar problem. had you got solution for this
@amankatariya3905 Жыл бұрын
wow
@deepanshuchaurasia4839 Жыл бұрын
👌👌👌👌
@shashwatjain8602 Жыл бұрын
share the project link
@shashwatjain8602 Жыл бұрын
please
@luckydummy-bl2zy Жыл бұрын
❤
@garud4445 Жыл бұрын
👍👍
@ahsanulanam-46327 ай бұрын
Cmnt kar diya
@JavedRahman-zj2fm Жыл бұрын
👍♥️
@KajalSharma-t6t Жыл бұрын
ye error aara h jbki name b unique h... UNIQUE constraint failed: auth_user.username
@ayushjaiswal648 Жыл бұрын
did u get the solution..?
@kajalsharma_mk Жыл бұрын
Yes@@ayushjaiswal648
@ghostkhan92427 ай бұрын
user = models.ForeignKey(User , on_delete=models.SET_NULL , null=True, blank=True, unique=True)
@ghostkhan92427 ай бұрын
@@ayushjaiswal648 user = models.ForeignKey(User , on_delete=models.SET_NULL , null=True, blank=True, unique=True)
@__ayu Жыл бұрын
AttributeError: 'function' object has no attribute 'set_password' [01/Oct/2023 23:06:55] "POST /register/ HTTP/1.1" 500 64927
@nature099975 ай бұрын
Brother, i have a doubt. Whatever we are doing is on local right. But if i want to deploy the app, i must use real time databases. In that case, can we use django's inbuilt authentication or we have to use other services?