backend/scrapers/urls.py
2021-10-28 12:12:20 +02:00

8 lines
197 B
Python

from django.urls import path
from django.views.generic import TemplateView
urlpatterns = [
path('', TemplateView.as_view(template_name="scrapers_home.html"), name='scrapers_home'),
]