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