Beispiel #1
0
def game_detail(request, game_id):
    context = {
        'game_id': game_id,
        'releases': Game.game_detail(game_id),
    }
    return render(request, 'games/game_detail.html', context)