from django.urls import path, include from . import views urlpatterns = [ path('', views.index, name='index'), path('devices/', views.devices, name='devices'), path('hosts', views.hosts, name='hosts'), path('devices//edit/', views.editdevice, name='editdevice'), path('devices//ping/', views.ping, name="ping"), path('devices//download/', views.getconfig, name="getconfig"), path('devices//delete/', views.deletedevice, name="deletedevice"), path('devices//reboot/', views.rebootdevice, name="rebootdevice"), path('heartbeat', views.heartbeat, name='heartbeat'), path('makedevice/', views.makedevice, name="makedevice") ]