10 lines
294 B
Python
10 lines
294 B
Python
from django.urls import path,include
|
|
from .views import index,add_timbre, timbres_cliente
|
|
urlpatterns = [
|
|
path('', index, name='index'),
|
|
path('add_timbre/', add_timbre, name='add_timbre'),
|
|
path('timbres_cliente/<str:RFC>/', timbres_cliente, name='timbres_cliente'),
|
|
|
|
|
|
|
|
] |