from django.urls import include, path from games.api.views import GameViewSet from rest_framework import routers # importing views from views..py from .views import GameList, GameDetail, GameSystemDetail, GamePlayDetail app_name = "games" urlpatterns = [ path("", GameList.as_view(), name="game_list"), path("/", GameDetail.as_view(), name="game_detail"), path("/play/", GamePlayDetail.as_view(), name="game_play_detail"), path("system//", GameSystemDetail.as_view(), name="game_system_detail"), ]