summaryrefslogtreecommitdiff
path: root/src/dashboard/urls.py
diff options
context:
space:
mode:
authorckonstanski <kostcarl@isu.edu>2026-07-30 18:17:14 -0600
committerckonstanski <kostcarl@isu.edu>2026-07-30 18:17:14 -0600
commit640ff61422bc0ee3966941b93d9889ddbbd38d77 (patch)
treeabf1c08f5d38ee53ec8b29dc4f425722517505e6 /src/dashboard/urls.py
parent22dae02a86c1fce71091bfa5289cf99abba1b217 (diff)
more filesHEADmaster
Diffstat (limited to 'src/dashboard/urls.py')
-rw-r--r--src/dashboard/urls.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/dashboard/urls.py b/src/dashboard/urls.py
new file mode 100644
index 0000000..d77419a
--- /dev/null
+++ b/src/dashboard/urls.py
@@ -0,0 +1,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")
+ ]
+