from games.models import GameSystem, GameCollection def game_systems(request): return { "game_systems": GameSystem.objects.all(), "game_collections": GameCollection.objects.all(), }