6 lines
130 B
Python
6 lines
130 B
Python
from django.views.generic import TemplateView
|
|
|
|
|
|
class IngestionHomeView(TemplateView):
|
|
template_name = "ingestion/index.html"
|