vpnmanager/manager/urls.py

12 lines
348 B
Python
Raw Normal View History

2018-11-25 21:02:16 +00:00
from django.urls import path, include
2018-11-25 15:05:26 +00:00
from . import views
urlpatterns = [
path('', views.index, name='index'),
2018-11-25 21:02:16 +00:00
path('devices', views.devices, name='devices'),
path('hosts', views.hosts, name='hosts'),
path('devices/<int:device_id>', views.editdevice, name='editdevice'),
path('heartbeat', views.heartbeat, name='heartbeat')
2018-11-25 15:05:26 +00:00
]