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