Django rest framework- calling another class-based view
问题 I have pored over several similar posts (and Calling a class-based view of an app from another app in same project seemed promising, but does not work), but some are older and none quite work for me. Here's my setup (using Django==2.0.6, djangorestframework==3.8.2) I have a basic model (simplified here): from django.db import models class Resource(models.Model): name = models.CharField(max_length=100, null=False) I have a basic endpoint where I can list and create Resource instances: from