from django.urls import path from .views.loglistview import LogListView urlpatterns = [ path('', LogListView.as_view()) ]