# wish/views.py from django.views.generic import ListView from .models import Wishlist class WishListList(ListView): context_object_name = 'wishlists' model = Wishlist template_name = 'wish/list.html'