7 lines
173 B
Python
7 lines
173 B
Python
|
|
from django.urls import path
|
||
|
|
from .views import *
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('',ListaEstudiantes,name = 'ListaEstudiantes'),
|
||
|
|
path('',ListaMaestros,name = 'ListaMaestros')
|
||
|
|
]
|