from django.urls import path from .views import * app_name = "jobs" urlpatterns = [ path('', HomeView.as_view(), name="home"), ]