Last updated: Feb 15, 2022

Django Views

Views basically refer to a python function that takes a web request and gives a response in the form of an HTML web page, 404 error, XML document, or anything. In this tutorial, we will learn about creating views, CRUD operation, creating different views like list view, detail view, form view, class-based generic views.
Views in Django
This blog covers the concept of views in Django responsible for taking a Web request and delivering a Web response.
Django CRUD
In this blog, we will learn about all CRUD operations in Django.
Function-Based List View in Django
This blog covers the concept of the function-based list view in Django, which generates a list of model items from the database.
Function-Based Detail View in Django
This blog covers the concept of the function-based detail view in Django, which displays a particular instance of a database table with all the required details.
Function-based Detail Views in Django
In this blog, we will be discussing Function-based Detail View in Django.
Class-Based Generic Views Django MEDIUM
In this blog, we will discuss the class-based generic views of Django.
Class-Based List View in Django
This blog covers the concept of the class-based list view in Django, which generates a list of model items from the database.
FormView | Django
In this blog, we will be discussing FormView in Django.