16 lines
410 B
Python
16 lines
410 B
Python
from django.urls import path
|
|
|
|
from .views import (
|
|
|
|
#CVB
|
|
SistemasXCliente_ListView,
|
|
SistemasXCliente_DetailView,
|
|
|
|
#DRF APIViews
|
|
Registrar_PC,
|
|
)
|
|
urlpatterns = [
|
|
path('',SistemasXCliente_ListView.as_view(),name='lista_sistmas'),
|
|
path('detail/<str:pk>/',SistemasXCliente_DetailView.as_view(),name='detail_sistemas'),
|
|
path('registerPC/',Registrar_PC.as_view(),name='register_PC'),
|
|
] |