from django.urls import path from control_plane.views import DeploymentDashboardHomeView from control_plane.views import DeploymentDashboardView from control_plane.views import DeploymentDetailView from control_plane.views import DeploymentHealthView app_name = "control_plane" urlpatterns = [ path("", DeploymentDashboardHomeView.as_view(), name="deployment-home"), path("deployments/", DeploymentDashboardView.as_view(), name="deployment-dashboard"), path("deployments//", DeploymentDetailView.as_view(), name="deployment-detail"), path("deployments//health/", DeploymentHealthView.as_view(), name="deployment-health"), ]