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