from django.urls import path from . import views, api urlpatterns = [ path('', views.index, name='index'), #... path('get_questions', api.get_questions, name='get_questions'), ]