backend/scrapers/urls.py

8 lines
197 B
Python
Raw Normal View History

2021-10-28 10:12:20 +00:00
from django.urls import path
from django.views.generic import TemplateView
urlpatterns = [
path('', TemplateView.as_view(template_name="scrapers_home.html"), name='scrapers_home'),
]