from django.shortcuts import render from django.views.generic import ListView from ..games.models import Game class GameList(ListView): model = Game