This guy channel is so underrated. He is like the best Django tutorial out there. Always referrer back to Django document which how it should be. Explained all fundamentals of the Django concept.
Wow - a 30 min lecture that is worth its weight in gold. Thanks for the excellent lecture, I’m new to Django and could follow your well thought through tutorial
Seriously, coming from someone that just started using Django, this video and the supplemental article is like a pot of gold! Initially, I was going the function-based view route, but I can now say with confidence I can write class-based views. Thank you!
I feel you 100%! I start with class views, and I thought this is so easy and clean, I'll stick with this... and then...the pain comes when I try to do something on my own. I failed to render 2 templates on the same page, so I had to go back to functions! I recommanded functions over this
Hey Dennis you're doing amazing job. I started learning django with youtube tutorials and you're a godsend. I don't know if you take any suggestions, but it would be awesome if you could make a tutorial on how to make a map application with django, or how to utilize machine learning with django. Great stuff!
Great video. The Django guide I was following didn't go into enough detail on this topic and I knew the "magic" had to do with inheritance and some assumptions, but I reaaaallly hate not understanding what's going on under the hood. Thank you for this explanation.
Thank you very much! I really appreciate all the hardwork that you put into this. I will return(my appreciation) back to society when I can. Or return(my appreciation) back to you when I can. Continue to stay cool.
Depends on the job in hand, I usually use them as they are fast and clean. You could actually do anything with the methods in the base classes and use custom mixins as well as you would want with a function based views
Thank you so so much for this, I came from your 7 hour django tutorial and already was wondering what were the differences between class and function based views. Your article is pure gold! I'm still in my path of becoming a django developer and your content is really helping me understand everything. Keep it up, and thanks again
You videos are amazing Dennis! I was trying to find a good playlist on CBVs but this single video helped me understand the most about Class Based views than any of the playlists. Thank you for posting amazing tutorials on Django! ❤
@@DennisIvy Absolutely! I like that they look cleaner than function based, but at the same time the function based gives me a better feeling of control since it's easier to see whats going on.
No words for your expalantion..superb I love the way you decode the things❤.Completed your Dev search udemy course its an amazing short and crispy.now I will do that in class based views. And I will try to learn your react and django udemy course.soon (under progress).
Awesome Dennis, i was looking for this video from too long✌️💯 You have explained very clearly thank you! The experienced you shared( you tried converting function based views to class based views then code got messed up was Psych 😅😅😅 made me laugh)
I'm a full stack developer with 6+ yrs of python and django experience, I just want to tell you that you're far better off using the function based view especially if you're my type of programmer who loves using custom solutions
Acutally if you are working with django its fine and easy to use any of those 2 views. But if you are working with django-rest-framework then dude You gotta do it with class based views.Cuz it got more functionality.
Quick question @dennis ivy.. I presume I should use viewsets for my API in django.. And for other models that are not part of the API should I also use view sets?
Hi Dennis Thanks! For such informative tutorial. I have one question, if someone is writing a view that doesn't use any of the models and performs its functionality (which is random) based on some data "inputed" by user. Then should one use Class based views since most of the classes that they inherit provide extended functionality for model based projects ?
man, I could not understand what actually context is ? in function based views, is context variables can be accessed anywhere from the html templates or is it the html templates that is passed to the `render()` method. For example, `return render(request, 'base/home.html', context)`. so, does this `context` variable accessible from let say `login.html`. Is it a global variable or is it only available for home.html ?
Hey Dennis. I have a question that has been bogging me down for some time now. Consider I have a website that shows only non-expired products (expiration is based on time). How can I run regular queries on db so that I can get the notification as soon as a product expires? Please help.
One way would be to have a regular db task checking the date/time (as rarely/often as is appropriate for your particular use case) and setting an 'expired' flag that you hold against a product. Then you have a database trigger on that field/record and do whatever you want to - send an email, write to a file, whatever.
I think the talks were all necessary, he explained everything needed to be able to understand class based view and there is nothing wrong in sharing a story to pass a point across. If you have a problem with that then do your own tutorial on it and don't subscribe. Show appreciation for once.
Some of your code blocks should've used "def" instead of "function" keyword for function declaration.
Haha oh man good call!! I totally missed that 🤦♂️
I just updated the article but I can’t fix a video, let’s see how many people notice lol
Yes, I was thinking same😂
@@freekeys The problem with working in several different languages :p
@@DennisIvy Yes, I Agree hahah
I'm in the process of filming the To-Do list tutorial so give me a day or two to link it up :)
Love from India ❤️
And also if possible make a video in new features added in new Django 3.2 updated version . Thanks for everything you have done until now for us 🙏🙏🙏
I'm happy to see your channel growing! Keep it up master dennis!
Love from yemen 💛
We love you bro! ❤❤❤❤❤
This guy channel is so underrated. He is like the best Django tutorial out there. Always referrer back to Django document which how it should be. Explained all fundamentals of the Django concept.
+1
Wow - a 30 min lecture that is worth its weight in gold. Thanks for the excellent lecture, I’m new to Django and could follow your well thought through tutorial
The only guy who explained the topic clearly Thanks!
Seriously, coming from someone that just started using Django, this video and the supplemental article is like a pot of gold! Initially, I was going the function-based view route, but I can now say with confidence I can write class-based views. Thank you!
I feel you 100%! I start with class views, and I thought this is so easy and clean, I'll stick with this...
and then...the pain comes when I try to do something on my own. I failed to render 2 templates on the same page, so I had to go back to functions! I recommanded functions over this
Hey Dennis you're doing amazing job. I started learning django with youtube tutorials and you're a godsend. I don't know if you take any suggestions, but it would be awesome if you could make a tutorial on how to make a map application with django, or how to utilize machine learning with django. Great stuff!
Great video. The Django guide I was following didn't go into enough detail on this topic and I knew the "magic" had to do with inheritance and some assumptions, but I reaaaallly hate not understanding what's going on under the hood. Thank you for this explanation.
Thank you very much! I really appreciate all the hardwork that you put into this. I will return(my appreciation) back to society when I can. Or return(my appreciation) back to you when I can. Continue to stay cool.
Totally Useful & best video on class base view in UA-cam. Many many Thanks from my Heart. Send you lots of love from Bangladesh 🇧🇩.
Depends on the job in hand, I usually use them as they are fast and clean. You could actually do anything with the methods in the base classes and use custom mixins as well as you would want with a function based views
Oh for sure, I’ve done that too :)
@@DennisIvy Why do not use CBV over FBV
Wao allready learn function based django so amazed with ur class based view explanation.op
Thank you very much !!!!!
By your tutorials i have learned many new things about Django framework.
Sorry for my English if something is wrong.
Big hug and Thank you Dennis , I 've been strugling to understand this things since I started.
keep looking back to this as a resource, thank you
Thank you so so much for this, I came from your 7 hour django tutorial and already was wondering what were the differences between class and function based views. Your article is pure gold!
I'm still in my path of becoming a django developer and your content is really helping me understand everything. Keep it up, and thanks again
One of the best tutorial I've ever seen! Thank you vvvvvvvvvvvvery muchhhhhhhhh!😋
You videos are amazing Dennis! I was trying to find a good playlist on CBVs but this single video helped me understand the most about Class Based views than any of the playlists. Thank you for posting amazing tutorials on Django! ❤
Thank you Dennis. You are really amazing, this makes me love Django more and more
I really appreciate your work Ivy ... good job.
This guy gives credit to other youtubers also in his paid course (just django) ... kudos 👏👏
Thank you Aliasager, I owe many people credit for my success :)
Don't forget to check out my Complete Django course! dub.sh/NvGboTI
Others: Django is dead
Dennis: Well, let me introduce myself
Great video Dennis!
Dennis: Hold my beer 🍺
Why django is dead, can you explain?
Great video on class based views!
Thank you Tomi :)
I use the View class but nothing else...good video...I was planning learning about these specific class based views.
You are a good teacher. Thanks Ivanov.
Thank you 🙏
This video saved my ass. Thank you so much.
Great explanations Dennis, really helpful! I love function based views, but I'm trying to use classes more.
It’s a love hate relationship with class based views lol
@@DennisIvy Absolutely! I like that they look cleaner than function based, but at the same time the function based gives me a better feeling of control since it's easier to see whats going on.
@@CodeWithStein I don't know why I am learning class based views, but they are cool
No words for your expalantion..superb I love the way you decode the things❤.Completed your Dev search udemy course its an amazing short and crispy.now I will do that in class based views. And I will try to learn your react and django udemy course.soon (under progress).
Im a big faj of this guy, i just love him
Great introduction to class base view. Video helps. Gonna check if you made one about mixin 😅😊
Thank you so much, It was awesome.
Great resource! Thanks
I purchased your udemy course and hope to start going through it by next month. I hope to learn a lot from you as always.
Hope you enjoy the course! It was a really fun project to work on :)
@@DennisIvy please link to your Udemy course
You make a Very Good Content Video..Thank you.
Thank you! Very clear and detail.
This is really helpful.
Excellent video.
Great video, and excellent teacher
Thanks for this video!
awesome as always Dennis :-)
Awesome Dennis, i was looking for this video from too long✌️💯 You have explained very clearly thank you!
The experienced you shared( you tried converting function based views to class based views then code got messed up was Psych 😅😅😅 made me laugh)
Awesome explanation, I've taken paid courses with worse or next to no description of how class based views work!
I'm a full stack developer with 6+ yrs of python and django experience, I just want to tell you that you're far better off using the function based view especially if you're my type of programmer who loves using custom solutions
Please just tell me how do I style the forms generated by django class based view
Hey Deninis, it may not be that important but you may want to update the section with the mixins. ".. when we want to when we want to... ".
Great explaination ❤️🌻
Acutally if you are working with django its fine and easy to use any of those 2 views.
But if you are working with django-rest-framework then dude You gotta do it with class based views.Cuz it got more functionality.
Where from did you learn class based view?
Good overview!
Quick question @dennis ivy..
I presume I should use viewsets for my API in django..
And for other models that are not part of the API should I also use view sets?
Like C#, one can define a class handler for a business logic. How can something similar be achieved with Django classes?
Great video mentor I would like to have your Udemy course but I can't raise the money for it .
Hi Dennis
Thanks! For such informative tutorial. I have one question, if someone is writing a view that doesn't use any of the models and performs its functionality (which is random) based on some data "inputed" by user. Then should one use Class based views since most of the classes that they inherit provide extended functionality for model based projects ?
Great video
damn good explanation
@dennis - great video - how would you use a function/method inside the class that's in another file that you import as module?
i figured it out !
what is the difference between plain django class based views and the class based views in Django Rest Framework?
man, I could not understand what actually context is ? in function based views, is context variables can be accessed anywhere from the html templates or is it the html templates that is passed to the `render()` method. For example, `return render(request, 'base/home.html', context)`. so, does this `context` variable accessible from let say `login.html`. Is it a global variable or is it only available for home.html ?
Thank you very much
I cant access you article, nor website, why is that?
it would be great if there may be some other logics than cruds included in the app exemple
When is it best to use class based views compared to function views
Any tutorial to show how the html is managed?
siometimes i strugle with calling at the url's my own method in a cbv, that inherit from View
Hey Dennis. I have a question that has been bogging me down for some time now. Consider I have a website that shows only non-expired products (expiration is based on time). How can I run regular queries on db so that I can get the notification as soon as a product expires? Please help.
One way would be to have a regular db task checking the date/time (as rarely/often as is appropriate for your particular use case) and setting an 'expired' flag that you hold against a product. Then you have a database trigger on that field/record and do whatever you want to - send an email, write to a file, whatever.
tnx for sharing
Omg thanks!
How to slug use on django bolg website please 1 video create for us
Thanks a lot :)
If I never see another ToDo list app.....
thank you
why he is using function rather def ?
Good
Please make a video on Django email. specially designed and beautiful email body.
15:00
sos el 1
Hi there
Too much talking, try getting to the point quickly. Just a friendly advice
I think the talks were all necessary, he explained everything needed to be able to understand class based view and there is nothing wrong in sharing a story to pass a point across. If you have a problem with that then do your own tutorial on it and don't subscribe. Show appreciation for once.
next time, you go straight to point, nobody asked you for story, we just want to learn how to write class based view.
Next time don’t watch my video bud. No one asked you to bum off my free video then proceeded to give your unsolicited opinion 🤦♂️
How you should start running without learning how to walk ?
who shitted in your cereal kid?
thank you