from django.contrib import admin from games.models import Console, Game admin.site.register(Console) admin.site.register(Game)