Linux agent functional. Added new client-facing server panel. Removed deferred pydantic annotations.
This commit is contained in:
10
app/apps/servers/urls.py
Normal file
10
app/apps/servers/urls.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
app_name = "servers"
|
||||
|
||||
urlpatterns = [
|
||||
path("", views.dashboard, name="dashboard"),
|
||||
path("<int:server_id>/", views.detail, name="detail"),
|
||||
]
|
||||
Reference in New Issue
Block a user