[Answer]-What is wrong with the custom method in DetailView

1👍

A Profile instance is not a queryset.

You shouldn’t be overriding get_queryset, you should be overriding get_object, which returns the specific object you want to display.

Leave a comment