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