Hopefully, you've learned quite a lot of Django the last 30 days? Even though you've now learned the very basics of Django, there's still a long way to go to master Django.
I run a YouTube channel (Code With Stein - Django tutorials) where you can learn a ton of Django and much more. I also have some premium Django courses here on my website as well!
I think that after this introduction to Django, you should be able to follow along most of my videos and series there. And that's also my suggestion for you. Go through as many tutorials as you can and expand your knowledge.
Thank you so much for following along. Feel free to leave me a comment below :-)
Table of contents
- 1. Introduction
- 2. Installation and setup
- 3. How things work
- 4. The first Django app
- 5. Your first view
- 6. Your first template
- 7. Testing our site
- 8. Extending templates
- 9. Your first model
- 10. The admin interface
- 11. Showing contents from the model
- 12. Another app (category)
- 13. Connecting two models
- 14. Show list of categories
- 15. Category detail page
- 16. Separate url files and why
- 17. Adding tasks in the front end
- 18. Editing tasks
- 19. Completing and deleting tasks
- 21. Prettying up the design a little bit
- 22. Make it possible to sign up
- 23. Logging in
- 24. Logging out
- 25. Show only your data
- 26. Creating a model function
- 27. Template filters
- 28. Pagination
- 29. The Messages Framework
- 30. Where to continue