Django DetailView
Defining a DetailView The Django DetailView allows you to define a class-based view that displays the details of an object. To use the DetailView class, you define a class that inherits from the DetailView class. For example, the following defines the TaskDetail class-based view that displays the detail of a task of the Todo app: from django.shortcuts import renderContinue Reading