blob: d77419a2f555e3ea3dc51d5e2b025ada56b1cc3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from django.urls import path
from . import views
urlpatterns = [
path("dashboard/", view=views.dashboard, name="dashboard"),
path("dashboard/deployment/", views.deployment, name="deployment"),
path("dashboard/hardware/", views.hardware, name="hardware"),
path("dashboard/playbook/<str:playbook_name>/", views.by_playbook_name, name="by_playbook_name"),
path("dashboard/cluster/<str:cluster_name>/", views.by_cluster_name, name="by_cluster_name")
]
|