This commit is contained in:
Francisco Rodriguez
2022-11-26 19:31:42 -07:00
parent db865ef49c
commit 77d2b02a92
9 changed files with 343 additions and 17 deletions

6
Clientes/urls.py Normal file
View File

@@ -0,0 +1,6 @@
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'),
]