6 lines
181 B
Python
6 lines
181 B
Python
from django.urls import path,include
|
|
from .views import index,add_timbre
|
|
urlpatterns = [
|
|
path('', index, name='index'),
|
|
path('add_timbre/', add_timbre, name='add_timbre'),
|
|
] |