2020-12-15 21:32:20 +00:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
2020-12-16 17:36:29 +00:00
|
|
|
path('',views.song_index),
|
|
|
|
path('<int:id>',views.song_id),
|
|
|
|
path('<int:id>/<str:title>',views.song_show),
|
2020-12-15 21:32:20 +00:00
|
|
|
]
|