from django.urls import path from . import views urlpatterns = [ path('meta/choices/', views.MetaChoicesView.as_view(), name='meta-choices'), path('relation-types/', views.RelationTypesView.as_view(), name='relation-types'), path('network-map-choices/', views.NetworkMapChoicesView.as_view(), name='network-map-choices'), ]