bro you saved my career life by making me realising that im interested in django web D otherwise i wont be able to get my slight interest at any cost ,even if your views are getting down ill be still appreciating you like an idiot because you made an idiot realise the true interest in himself.
It's heartbreaking to see your views drop so drastically, but keep going, brother! One day, people will ask you to be their mentor. Who knows, maybe I'll ask you for advice in the future😉
this is such a great series i got stuck somewhere in things but watching it on repeat help me to solve all the problems where i got stuck thankyou for the amazing series sir
Bro the content is surely amazing also you have covered many production grade concepts too, hats off i will surely share this to all my frnds who are django devs and upcoming django devs and you should also bring more courses like this thanks mate
sir aapne jo static and media setting me add kiya hai wo problem kr raha hain or static fiel does not exit show kar raha hai jiski wajha se me receipe project me image show nhi kr pa raha hu aap solution btaiye plz sir
I have a question , jb hm delete kr rhe hai toh hamari static dir se assets delete kyun nhi ho rhe public\static ecipe is dir se woh saare images bhi delete ho chaiye toh ,,, And also database se ho rha hai kyuki hm Recipe object to call kr rhe hai pr hamare public folder se images nhi delete ho rhi , kyun ?
pehle me aoki sari video bgair practice keye daikhti hn just to get the sense of your coding, phir 2nd time rook rook k ipad pe notes bnata hn , ten 3rd time phir se daikhta hn or practically laptop pe code krta hn . my question is .. Am I mad?
bro Can You create a video on abstract based user authentication or one to one user authantication to add more field on user signup page and multi page login where user can go to different pages like assumming doctor, patient and admin. Please help me down for this
@@shivanshupadhyay1219 bhai hamne path('delete-recipe//', views.delete_recipe, name='delete_recipe') ye poora root k urlpattern me q likha hai? kya ham vege app k urls me nahi likh skte?
@@Ameyiscool url h kaha veggie Wale app mein and agr models ki bat kr rhe ho to har app ka model alag hota hai halanki tm chaho to import krke doosre model ke components kisi doosre model me use kr skte hai
@@shivanshupadhyay1219 Nahi bhai. Jo hamne delete vala path likha hai na vo hamne main project k urls.py file me q likha hai... Ye hai Mera qsn. Hamne delete vala cheez templates k folder k andar Recipes.html me likha hai, us delete ko hamlog q nahi vege app k url pattern me likhe?? Q hamko root k url pattern me likhna pad rha hai.
Book your seats before the Price Increase - bit.ly/3yZthF6
Coupon - DJMASTER
He is so calm, thank you for effort
brother believe me your lectures are really blessing for me. love from Pakistan❤❤
sir honestly your way and flow of teaching is awesome
and please keep uploading
cool video
bro you saved my career life by making me realising that im interested in django web D otherwise i wont be able to get my slight interest at any cost ,even if your views are getting down ill be still appreciating you like an idiot because you made an idiot realise the true interest in himself.
bhai maine sam e cheez follow ki fir bhi mere me static folder to bnaa hi nhi... koi suggestions???
Solution hogaya?
@@amaansiddiqui158
@@amaansiddiqui158 have you imported views
Thanks vai for this awesome course! Please continue the course till advanced level
It's heartbreaking to see your views drop so drastically, but keep going, brother! One day, people will ask you to be their mentor. Who knows, maybe I'll ask you for advice in the future😉
Great vedio
very nice course
this is truely awesome.. thank you
GO Go
this is such a great series i got stuck somewhere in things but watching it on repeat help me to solve all the problems where i got stuck thankyou for the amazing series sir
LOVE HOGAYA SIR
keep it up.. amazing course 💖💖
Bro the content is surely amazing also you have covered many production grade concepts too, hats off i will surely share this to all my frnds who are django devs and upcoming django devs and you should also bring more courses like this thanks mate
You did a great job
Going through all your videos sir please make more content like this
@codingforallnewtonschool Yes, please continue this playlist.
♥♥
Thank you bhaiiiiiiiiiiiii😊
any way great django series
sir aapne jo static and media setting me add kiya hai wo problem kr raha hain
or static fiel does not exit show kar raha hai jiski wajha se me receipe project me image show nhi kr pa raha hu aap solution btaiye plz sir
great from Nepal
Thank you I have learnt Django easily by you , Use face cam it gives a good experience
8:17 What to do if want to save the file like this RECIPE_NAME.extension
in the recipe folder??
👍👍👍👍👌👌👌
👍👍
You are too good buddy!!
❤❤
Well done brohh keep it up !
Thoda deep me samjaya kro jo bahut jaroori hota hai
I have a question , jb hm delete kr rhe hai toh hamari static dir se assets delete kyun nhi ho rhe
public\static
ecipe is dir se woh saare images bhi delete ho chaiye toh ,,,
And also database se ho rha hai kyuki hm Recipe object to call kr rhe hai pr hamare public folder se images nhi delete ho rhi , kyun ?
please fornt size thoda zoom rkha kro phone se pdne m problem hoti hai
dont worry about views and likes bro great things takes time
bahut jyada background noise h
THIS DJANGO VIDEOS CAN HELP YOU GET A JOB IF YOU PRACTICE PROPERLY.
really is it complete?
👍
❤👍🏻
Okay
💞💕
bhai agar wo code jara GIT hub pey upload kr dete to bohot help ho jati
pehle me aoki sari video bgair practice keye daikhti hn just to get the sense of your coding, phir 2nd time rook rook k ipad pe notes bnata hn , ten 3rd time phir se daikhta hn or practically laptop pe code krta hn . my question is .. Am I mad?
sir wo delete wala same kiya maine to bhi TypeError: argument of type 'function' is not iterable
please help bahut try kiya resolve hi nh ho rha hai
bro Can You create a video on abstract based user authentication or one to one user authantication to add more field on user signup page and multi page login where user can go to different pages like assumming doctor, patient and admin. Please help me down for this
sir Apko msg kra but aap reply hi nahi krte
hey when i am trying to delete it is showing me that error "The current path, travel/delete-travel/6/, didn’t match any of these." can anyone help
Same error
sir delete nhi oh rahi sir
def delete_recipe(request, id):
recipes = recipe.objects.get(id=id)
print(recipes)
recipes.delete()
return redirect('submit_recipe')
views.py
path('delete-recipe//', views.delete_recipe, name='delete_recipe')
urls.py
class recipe(models.Model):
id=models.IntegerField(primary_key=True)
recipe_name = models.CharField(max_length=100)
recipe_image = models.ImageField(null=False, blank=False, upload_to="images/")
recipe_description = models.TextField()
def _str_(self) -> str:
return self.recipe_name
models.py
@@shivanshupadhyay1219 bhai hamne path('delete-recipe//', views.delete_recipe, name='delete_recipe') ye poora root k urlpattern me q likha hai? kya ham vege app k urls me nahi likh skte?
@@Ameyiscool url h kaha veggie Wale app mein and agr models ki bat kr rhe ho to har app ka model alag hota hai halanki tm chaho to import krke doosre model ke components kisi doosre model me use kr skte hai
@@shivanshupadhyay1219 Nahi bhai. Jo hamne delete vala path likha hai na vo hamne main project k urls.py file me q likha hai... Ye hai Mera qsn.
Hamne delete vala cheez templates k folder k andar Recipes.html me likha hai, us delete ko hamlog q nahi vege app k url pattern me likhe?? Q hamko root k url pattern me likhna pad rha hai.
Not working sir
Thikse Karo work karega
ye samaj nahi aaya'
worst course ever , guys please don't watch his videos,he skipped many topics in mid
bro copies everything
how do you know ? and do you any other youtube channels who teacher modern django 5 , most of them are teaching django 2 or 3 like cwh
@@gameking2447 code with harry django playlist is about 6 years ago
worst video