from django.urls import path from races.views import index, race_detail urlpatterns = [ path('', index, name='races_index'), path('race//', race_detail, name='race_detail'), ]