I will begin with installation and setup, continue with explaining how things work and similar. After this, I will build an application. The most important part of this tutorial is to learn about how Django works and similar, and not the application it self.
The project we're going to build is a todo application. We will build it piece by piece, and I will introduce lots of important features of Django.
This series will be perfect for beginners and people who wants to dive into Django. I will explain things as well as I can, so if you've already tried Django but don't understand it, hopefully this series will be helpful to you.
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