Articles in this series
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...
Uploading an image, using packages, pagination, customizing admin ยท This is the second part of Fluent in Django series. We're going to upgrade the code...
Intro Django templating language (Django's default out-of-the-box templating language) comes with dozens of tags that make your template powerful and...
Prerequisites You will need the basic knowledge of Django. If you don't feel comfortable with Django yet, try this beginner-friendly tutorial. Django...
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...