from django.urls import path from polls import views urlpatterns = [ path('index', views.index, name='index'), path('ola', views.ola, name='ola') ]