Articles in this series
Intro Django is an MTV framework. Instead of MVC (Model, Views, Controller), it uses Model, Template, and View. The View is a Python function that takes a Web request and returns a Web response (in MVC, this would be a Controller). But the heart of y...
Prerequisites You will need the basic knowledge of Django. If you don't feel comfortable with Django yet, try this beginner-friendly tutorial. Django template filters While tags lives between curly braces and a percent ({% tag %}), variables live bet...
Intro Django templating language (Django's default out-of-the-box templating language) comes with dozens of tags that make your template powerful and allows you to do many many things. Tags provide arbitrary logic in the rendering process and they ar...
Uploading an image, using packages, pagination, customizing admin
Intro Knowing a language will only get you so far. If you have to build everything by yourself, you'll never get things done before the deadline. After you learned a programming language, it's smart to add a framework to your arsenal. Django is the m...