detailview code example
Example 1: detailview
class YourView(DetailView):
model = YourModel
template_name = 'your_model_detail.html'
Example 2: django listview
class YourView(ListView):
model = YourModel
paginate_by = your_pagination_number
context_object_name = 'your_model_in_plural'
template_name = 'your_list.html'