from django.urls import path from . import views app_name = 'scientificApp' urlpatterns = [ path('', views.index, name='index'), # path('monitoring/', views.monitoring, name='monitoring'), # path('face/', views.face, name='face'), ]