drf-nested-routers RuntimeError('parent registered resource not found')
问题 I am attempting to utilize the package drf-nested-routers to created nested routes within my API. I've attempted to follow alongside the documentation (https://github.com/alanjds/drf-nested-routers) as well as read through multiple Stackoverflow threads in hopes to figure out this issue. I would like to create a single NestedSimpleRouter. Here is what I have so far inside of my routers.py file: from django.urls import path, include from rest_framework.routers import DefaultRouter from rest