Category: Django Tutorials

Django URLs and URL mapping

Django URLs and URL Mapping

We’ll learn about Django URL mapping and how to connect the URL request to the corresponding view in this tutorial. Since Django is a web application framework, it receives user requests and answers them...

create quiz web application django python

Create Quiz Web App with Python Django

Let’s develop our own Quiz App Project in Django and let others attempt and test their knowledge by giving the Quiz. You will also get the basic idea of Django Python framework and how...

Django MVT Architecture

All You Need to Know About Django MVT Architecture

In our previous article, we learned “Django’s MVC Architecture”. We have discussed the MVC (Model-View-Controller) in depth. We have seen the need to introduce the MVC architecture after discontinuing the old practice of having...

Django Project structure

Django Project Structure and File Structure

Django makes use of a directory structure to arrange different parts of the web application. It creates a project and an app folder for this.  Creating a proper project and organizing it helps in...