I\'m new to Django and am trying to create the back end code for a music application on my website.
I have created the correct view in my views.py file (in the corre
If it doesn't work add this code to yoursite\urls.py inside urlpatterns:
path('music/<int:album_id>/', views.detail, name="detail"),