Category: Django Tutorials

Creating Views in Django in Just 5 Simple Steps

Creating Views in Django in Just 5 Simple Steps

The view component of the model view controller (MVC) architecture is responsible for presenting data to users for consumption and viewing. Views are Python functions or classes that accept a web request and generate...

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...