Exploring Django's Model-View-Template(MVT) Architecture by Vincent/Feb. 6, 2024, 9:47 a.m./5 minutes #MVT Django is an open-source, high-level web development framework. Generally, Django follows a high-level architectural pattern known as the Model-View-Template (MVT) structure. Let's represent the Django MVT architectural structure pictorially. The … Continue Reading
How to create custom Django Middleware by Vincent/Aug. 15, 2023, 12:24 p.m./10 minutes #middleware Django middleware is a light framework that globally alters Django inputs and outputs. We discussed Django middleware and the in-built Django middleware in detail here. You can check it … Continue Reading
Django Middlewares by Vincent/Aug. 14, 2023, 9:40 a.m./10 minutes #middleware Django middleware is a light plugin for Django that handles request and response processing on a global scale. The middleware acts as a bridge between various program functions in Django. … Continue Reading
How to create multistep form using Django and Django formtools by Vincent/Dec. 21, 2022, 3:46 p.m./10 minutes #forms What is Multistep form? Multistep forms are multiple forms used to collect the user's input. These forms are usually broken into multiple pages. Multistep forms are usually used to collect … Continue Reading
How to setup PostgreSQL with Django by Vincent/July 17, 2022, 6:30 a.m./10 minutes #Database By default, Django comes with a lightweight SQLite database system. Django describes the SQLite database as a database used just to test or familiarise oneself with Django. While this works … Continue Reading