from django.urls import path from . import views urlpatterns = [ path( r'<str:app>/<str:model>/<int:pk>/', views.nav_json, name="admin_links" ), ]