urls.py 726 Bytes
from django.urls import path
from . import views

urlpatterns = [
    path("obs_global_config",views.obs_global_config,name="obs_global_config"), 
    path("obs_hardware_config",views.obs_hardware_config,name="obs_hardware_config"), 
    path("obs_astronomer_config",views.obs_astronomer_config,name="obs_astronomer_config"), 
    path("obs_agents_config",views.obs_agents_config,name="obs_agents_config"), 
    path('unit_hardware_configuration/<str:unit_name>', views.unit_hardware_configuration, name='unit_hardware_configuration'),
    path('computer_details/<str:computer_name>', views.computer_details, name='computer_details'),
    path('device_detail/<str:device_name>', views.device_details, name='device_details'),
]