from django.urls import path from ..views.person import * app_name = 'person' urlpatterns = [ path('', index, name='index'), ]