from django.urls import path from . import views urlpatterns = [ path('',views.song_index), path('',views.song_id), path('/',views.song_show), ]