DjangoRestMultipleModels icon indicating copy to clipboard operation
DjangoRestMultipleModels copied to clipboard

View (and mixin) for serializing multiple models or querysets in Django Rest Framework

Results 9 DjangoRestMultipleModels issues
Sort by recently updated
recently updated
newest added

`importlib_metadata` is causing errors installing dependency on Python 3.7 only. Example build failure: [link](https://app.travis-ci.com/github/MattBroach/DjangoRestMultipleModels/jobs/578823288) This proposed fix is based on discussions on the Travis CI community [here](https://travis-ci.community/t/build-error-for-python-3-7-on-two-different-projects/12895/3) and [here](https://travis-ci.community/t/build-errors-installing-a-common-dependency-docopt-on-python-3-7-but-not-other-versions/12886/5). Though...

DataViewSet.get_queryset() returned None when using ObjectMultipleModelAPIViewSet. basename given, even router converted to path function. But still same issue Getting this issue in django 3.0.14 and django-rest-multiple-models==2.1.3. Can I get some...

When using the standardized format, I am getting the error that FileViewset has no attribute 'get_extra_actions' I have tried routing the view using 'as_view' in the router.register function, but that...

I think it would actually be a very nice API and is a use-case that I currently have. It would just do what a normal ModelViewset would do to each...

I really appreciate your work on this package: it is invaluable for my site. One thing that would make it even better is support for django-filter (https://django-filter.readthedocs.io). This is a...

Actually i want to send extra argument with the serializer. Eg. serializer = PollDetailSerializer(context={"user_id": request.user.user_id})

Example: ``` { "Play" : {"genre": "Comedy", "title": "A Midsummer Night"s Dream", "pages": 350}, "Poem" : [ {"title": "Shall I compare thee to a summer"s day", "stanzas": 1}, {"title": "As...

FilterSets can be added to querylist dict in 'filterset_class' key

Hey thanks for sharing this great app. I just stumbled upon this repo while trying to implement the same functionality. It works great, but I couldn't get sorting to work...