urls.py 918 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_details/<str:device_name>', views.device_details, name='device_details'),
    path('edit_config',views.edit_config,name="edit_config"),
    path('verify_config',views.verify_config,name="verify_config"),
    path('save_config',views.save_config,name="save_config")
]