from django.urls import path from .views import * app_name = "legacy" urlpatterns = [ path("books//", book, name="book"), path("movies//", movie, name="movie"), path("music/album//", album, name="album"), path("music/song//", song, name="song"), path("games//", game, name="game"), path("collections//", collection, name="collection"), path("books/review//", book_review, name="book_review"), path("movies/review//", movie_review, name="movie_review"), path("music/album/review//", album_review, name="album_review"), path("music/song/review//", song_review, name="song_review"), path("games/review//", game_review, name="game_review"), ]