from django.urls import path from .views import StatsHomeView app_name = "stats" urlpatterns = [ path("", StatsHomeView.as_view(), name="index"), ]