spug_expand/dashboard/urls.py

9 lines
200 B
Python

from django.urls import path
from dashboard import views
urlpatterns = [
path('monotoring/',views.monotoring),
path('alarm/',views.alarm),
path('task/histories/',views.task_histories),
]